<style>
* {
  box-sizing: border-box;
    direction: rtl;
    font-weight: bold;
      font-size: large;
}
body{
}

input, select, textarea {
   text-align: right ;
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
   text-align: right ;
  padding: 5px 5px 5px 0;
  display: inline-block;
}

input[type=submit] {
  background-color:green;
  color: white;
  padding: 5px 5px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  float: right;
}

input[type=submit]:hover {
  background-color: LimeGreen;
}

.container {
  border-radius: 5px;
  background-color: #FFFFFF;
  padding: 20px;
}

.col-25 {
  float: right;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
  direction: rtl;
}

th, td {
  
text-align: center;
  padding: 8px;
}

tr:nth-child(even){background-color: #f2f2f2}
.btn {
  background-color: green;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  outline: none;
}

.dropdown {
 
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FFFFFF;
  min-width: 160px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd}

.dropdown:hover .dropdown-content {
  display: block;
    box-shadow: 10px 10px green;

}

.btn:hover, .dropdown:hover .btn {
  background-color: LimeGreen;
}
</style>