<style>
* {
  box-sizing: border-box;
  direction: rtl;
  font-family: 'Tahoma', sans-serif;
  font-weight: bold;
  font-size: 1rem;
}

body {
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

input, select, textarea {
  text-align: right;
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  float: right;
  transition: background-color 0.3s;
}

input[type=submit]:hover {
  background-color: #0056b3;
}

.col-25 {
  float: right;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
}

th, td {
  text-align: right;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

.btn {
  background-color: #17a2b8;
  color: white;
  padding: 12px 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.btn:hover {
  background-color: #138496;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  z-index: 1;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  border-radius: 4px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media (min-width: 700px) {
  .t1 { display: block; }
  .t2 { display: none; }
}

@media (max-width: 700px) {
  .t1 { display: none; }
  .t2 {
    display: block;
    text-align: center;
  }
  th, td {
    text-align: center;
  }
}
