.container {
  width: 100%;
  margin: 0px auto;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
h2 {
  margin: 0 0 20px 0;
  font-weight: 600;
}
.btn {
  padding: 5px 16px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: whitesmoke;
  background: #0979ba;
  border-left: 2px solid red;
  border-bottom: 1px solid rgb(8, 84, 109);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: #45aad5;
}

.btn-primary {
  background: #109b1a;
  color: white;
  border: none;
  border-bottom: 2px solid rgb(9, 58, 88);
  box-shadow: 1px 5px 5xp rgba(2, 44, 55, 0.713);
  transition: all 0.2s ease;
}

.btn-primary i {
  color: #eee;
}

.btn-primary:hover {
  background: #067b1c;
  border-bottom: 2px solid rgb(111, 255, 123);
}
.btn-danger {
  background: #f46252;
  color: white;
  border-bottom: 2px solid rgb(9, 58, 88);
  box-shadow: 1px 5px 5xp rgba(2, 44, 55, 0.713);
  transition: all 0.2s ease;
}
.btn-danger:hover {
  background: #8d1d11;
  border-bottom: 2px solid rgb(255, 41, 41);
}

.btn-danger i {
  color: #eee;
}

.btn_sec {
  width: 100%;
  margin: 5px auto;
  padding: 8px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: rgb(5, 43, 16);
  background: #72dcca;
  border-bottom: 1px solid rgb(10, 119, 33);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.btn_sec:hover {
  background: #45aad5;
}

table {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 14px;
  color: #06415c;
  width: 100%;
  border-collapse: collapse;
  /*background: rgba(255, 255, 255, 0.191);*/
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  box-sizing: border-box;
}
th,
td {
  padding: 0px 10px;
  margin: 0;
  font-size: 14px;
}

th {
  background: transparent;
  font-weight: 600;
}
tr {
  background: transparent;
  transition: all 0.3s ease;
}

.color-box {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #878787;
}
.modal {
  position: fixed;
  top: 30px;
  left: 0;
  width: 100%;
  min-height: 450px;
  background: rgba(28, 236, 236, 0.1);
  border-radius: 20px;
  /*inset: 0;*/
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;
  justify-content: center;
  align-items: top;
  z-index: 400;
}
.modal-content {
  font-family:
    "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
    Arial, sans-serif;
  font-size: 14px;
  color: rgb(15, 80, 113);
  width: 250px;
  max-height: 700px;
  overflow-y: scroll;
  overflow-x: hidden;
  background: rgba(241, 241, 241, 0.98);
  padding: 10px 15px;
  border-radius: 10px;
  border: 2px solid rgb(30, 142, 207);
  box-shadow: 0 5px 10px rgba(37, 37, 37, 0.319);
}
.form-group {
  margin-bottom: 14px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 600;
  appearance: textfield;
  text-align: right;
  width: 100%;
  max-width: 200px;
  padding: 2px 10px;
  margin: 5px;
  border: 1px solid #2994c6;
  box-sizing: border-box;
  background-color: rgba(102, 226, 147, 0.1);
  border-radius: 5px;
  outline: none;
  box-shadow: 0 3px 5px rgba(37, 37, 37, 0.319);
  transition: all 0.1s ease-in-out;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
}

input:focus {
  border: none;
  background-clip: padding-box;
  background-color: rgba(13, 155, 202, 0.1);
  border: 1px solid #0f88c4;
  outline: none;
}

.toggle {
  width: 50px;
  height: 24px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}
.toggle::after {
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.2s;
}
.toggle.active {
  background: #3a5bff;
}
.toggle.active::after {
  left: 28px;
}

/*********  Ticket Entry Form. *********/

.ticket {
  margin: 10px auto;
  padding: 0 2px 2px 2px;
  border-radius: 7px;
  background: linear-gradient(rgb(246, 246, 246), rgba(6, 143, 193, 0.6));
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.ticket h2 {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 0px 7px;
  margin: 0px 10px;
  color: #07314a;
}

.ticket h2 i {
  color: #07314a;
  margin: 5px 7px;
}

.ticket .ticket_num {
  padding: 5px;
  text-align: center;
  background: rgb(249, 249, 249);
  overflow: hidden;
}

.ticket .ticket_function {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: center;
  padding: 5px 15px;
  background: rgba(5, 183, 228, 0.1);
  box-sizing: border-box;
  border-top: 1px solid rgba(15, 141, 208, 0.3);
  box-shadow: 0 3px 5px rgba(3, 27, 40, 0.3);
}

.ticket .ticket_btn {
  text-align: center;
  padding: 7px 15px;
}

.ticket .submit_btn {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  background: #0a82ba;
  color: whitesmoke;
  padding: 3px 16px;
  border-radius: 5px;
  border: none;
  border-bottom: 1px solid rgb(7, 49, 70);
  box-shadow: 0 3px 5px rgba(37, 37, 37, 0.319);
  transition: all 0.2s ease-in-out;
}

.ticket i {
  font-size: 16px;
  color: whitesmoke;
  transition: all 0.2s ease-in-out;
}

.ticket .submit_btn:hover {
  color: #f8f8f8;
  background: #0797cc;
}
/*
.ticket .submit_btn:hover i {
  color: #031823;
}
*/
.ticket_entry_form {
  width: auto;
  background: #ffffff4a;
  margin: 0 auto;
  padding: 5px 10px;
  border: none;
  border-bottom: 1px solid rgba(8, 65, 88, 0.315);
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.table_form {
  text-align: center;
}

.table_form select {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  width: auto;
  max-width: 300px;
  padding: 3px 10px;
  margin: 0 5px;
  font-weight: 400;
  border-radius: 5px;
  border: none;
  outline: none;
  box-shadow: 0px 2px 4px rgba(9, 49, 73, 0.49);
}

.btn_form {
  width: auto;
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 10px 15px;
  padding: 3px 15px;
  background: #cbe0ea;
  color: rgb(14, 80, 112);
  border: none;
  border-bottom: 2px solid rgb(14, 101, 151);
  border-radius: 5px;
  box-shadow: 0px 1px 4px rgba(9, 49, 73, 0.49);
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.btn_form:hover {
  background: rgb(10, 131, 192);
  color: #fff;
}

.btn_form i {
  transition: all 0.2s ease-in-out;
}

/* Icon hover (when button is hovered) */
.ticket_entry_form .btn_form:hover i {
  color: #fcfcfc;
}

.table_form option {
  border-radius: 5px;
}

.sel_option {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  letter-spacing: 1px;
  font-size: 13px;
  text-align: center;
}

.table_form .btn_form {
  width: auto;
}

.display_active_tirage {
  margin: 20px auto;
  padding: 15px;
  max-width: 400px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.sub_container {
  width: 100%;
  margin: 20px auto;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.sub_container .tirage-table {
  margin: 10px auto;
}

.sub_container .tirage-table td {
  margin: 10px auto;
}

.sub_container .time-box,
.auto-box {
  font-weight: 600;
  color: #0a547f;
}

/*** Selling ticket area ***/

.sell_ticket {
  width: 100%;
  margin: 0 auto;
  background: whitesmoke;
  overflow: hidden;
}

.sell_ticket form {
  width: 100%;
}

.sell_ticket td {
  width: 100%;
}

.barcode {
  width: auto;
  margin: 0 auto;
}

.loc_date {
  font-size: 16px;
  font-weight: 600;
}

.location {
  font-size: 18px !important;
  letter-spacing: 1.2px;
  padding: 3px 0;
  margin: 2px 0 !important;
  border-top: 2px dotted rgb(10, 101, 131);
  border-bottom: 2px dotted rgb(10, 101, 131);
}

.summary span {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 5px;
  border: 1px dotted rgb(17, 110, 163);
}

.summary-bar {
  width: 100%;
  text-align: center;
  background: rgba(14, 111, 181, 0.122);
  border-radius: 10px;
  border: none;
  border-bottom: 1px solid rgb(6, 65, 86);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}

.summary-item {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  display: inline-block;
  max-width: 300px;
  padding: 5px 15px;
  margin: 3px 5px;
  font-size: 13px;
  font-weight: 600;
  color: rgb(8, 82, 139);
  border-radius: 5px;
  border: none;
  border-bottom: 1px solid rgba(9, 99, 131, 0.699);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}

.filter-form {
  display: flex;
  gap:30px;
  justify-content: left;
  align-items: left;
  margin: 5px 35px;
}

.filter-form .filter-row {
  text-align: center;
}

.filter-form input::placeholder {
    color: #086dab;
    font-size: 12px;
    font-weight: 600;
    opacity: 1
}

.filter-col {
  max-width: 150px;
  margin: 5px 10px;
  padding: 5px;
}

.filter-col input[type="date"] {
  width: 150px;
  background: #0797cc;
  color: whitesmoke;
  padding: 3px 5px;
  border-radius: 5px;
  border: none;
  outline: none;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(6, 65, 86);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.filter-tirage select {
  color: rgb(244, 244, 244) !important;
  transition: all 0.3s ease;
}

.filter-tirage option {
  color: whitesmoke !important;
  transition: all 0.3s ease;
}

.ticket_message {
  width: 100%;
  height: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #0a5988;
  padding: 0;
  margin: auto;
  border-radius: 5px 5px 0 0;
  background: rgba(255, 255, 255, 0.878);
  text-align: center;
}

.limit_amt {
  margin: 1px auto;
  padding: 6px;
  background: #f5f5f5;
  border-radius: 7px;
  text-align: center;
}

.limit_amt td {
  border: 1px dotted rgba(12, 132, 193, 0.251);
}

.card .form-row select {
  color: whitesmoke !important;
  width: auto;
  padding: 5px 8px;
  margin: 7px 20px;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(11, 77, 107);
  border-radius: 5px;
  background: #097bb0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.card .form-row option {
  color: whitesmoke;
  background: #0797cc;
}

.card .form-row input {
  background: rgba(7, 151, 204, 0.047);
}

.display_nums {
  font-size: 7px;
  border-radius: 7px;
}

.display_nums tr {
  border-bottom: 1px dotted rgba(13, 80, 119, 0.477);
  padding: 1px auto;
  margin: 1px auto;
}

form .del {
  color: red;
  height: 20px;
  line-height: 0px;
  padding: 1px auto;
  margin: 5px auto;
  border-bottom: 1px solid rgb(228, 52, 13);
  background: rgb(198, 221, 227);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

form .del:hover {
  background: rgba(163, 7, 7, 0.212);
}

form .save {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 1px auto !important;
  margin: 0 8px 0 0 !important;
  border: none;
  outline: none;
  color: rgb(10, 117, 21);
  text-shadow: rgb(194, 194, 194);
  border-bottom: 1px solid rgb(10, 117, 21);
  background: rgb(191, 230, 190);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

form .save:hover {
  background: rgba(78, 226, 105, 0.687);
}

form .save i {
  color: rgb(10, 86, 109);
}

form .clear {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: red;
  text-shadow: whitesmoke;
  padding: 1px auto;
  margin: 0 0 0 8px;
  border: none;
  outline: none;
  border-bottom: 1px solid rgb(228, 52, 13);
  background: rgb(198, 221, 227);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
}

form .clear:hover {
  background: rgba(163, 7, 7, 0.212);
}

.ticket-textarea {
  min-width: 300px;
  min-height: 120px;
  border-radius: 10px;
  padding: 10px 15px;
  resize: vertical; /* allows manual resizing */
}

.ticket-header {
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #042a38;
}

.ticket-footer {
  text-align: center;
  display: none;
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #042a38;
  margin-top: 7px;
}

.flash-message {
  background: #e0ffe0;
  border: 1px solid #8bc48b;
  color: #2d662d;
  padding: 12px 16px;
  margin: 15px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.4s ease-out;
}

.card_sec p {
  margin-bottom: 5px;
}

.btn-secondary {
  margin-bottom: 20px !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SIMPLE RESPONSIVE TWEAKS */
/*
@media (max-width: 900px) {
  .left, .right {
  }
  .table_form {
    gap: 1px;
  }
  .table_form select {
    width: 90%;
    max-width: 300px;
  }
  .table_form .btn_form {
    width: auto;
  }
  .modal {
    position: fixed;
    top: 20px;
  }

  .modal-content {
    width: 250px;
    max-height: 500px;
  }
}
*/
@media (max-width: 999px) {
  .left,
  .right {
    float: left !important;
    width: 100% !important;
    clear: both;
  }
  .table_form {
    gap: 10px;
  }
  .table_form select {
    width: 75%;
    max-width: 300px;
  }
  .table_form .btn_form {
    width: auto;
  }
  .ticket .ticket_function {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 5px 15px;
    background: rgba(5, 183, 228, 0.1);
    box-sizing: border-box;
    box-shadow: 0 3px 5px rgba(3, 27, 40, 0.3);
  }

  .ticket .ticket_btn {
    text-align: center;
    padding: 7px 15px;
  }

  .ticket .submit_btn {
    font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    background: #0c8bc6;
    color: whitesmoke;
    padding: 3px 16px;
    border-radius: 5px;
    border: none;
    border-bottom: 1px solid rgb(7, 49, 70);
    box-shadow: 0 3px 5px rgba(37, 37, 37, 0.319);
    transition: all 0.2s ease-in-out;
  }
}

@media (max-width: 768px) {
  .table_form select {
    width: 70%;
    max-width: 300px;
  }
}

.table_form .btn_form {
  width: auto;
}

@media (max-width: 560px) {
  table {
    padding: 0;
    margin: 0;
  }
  .table_form {
    padding: 0;
    margin: 0;
    gap: 0px;
  }
  .table_form select {
    width: auto;
    min-width: 30%;
  }
  .table_form .btn_form {
    width: auto;
    padding: 7px 5px;
    box-sizing: border-box;
  }

  .card_sec {
    display: none;
  }

  .collapse-header {
    display: none !important;
  }

  .shortcut {
    display: none;
    font-size: 11px !important;
    color: red;
  }
}

@media (max-width: 440px) {
  table {
    padding: 0;
    margin: 0;
  }
  .table_form {
    padding: 0;
    margin: 0;
    gap: 0px;
  }
  .table_form select {
    width: auto;
    min-width: 100%;
    margin-bottom: 10px;
  }
  .table_form .btn_form {
    width: auto;
    padding: 7px 5px;
    box-sizing: border-box;
  }
  .ticket_function,
  .ticket_num,
  .ticket_function,
  .ticket {
    text-align: center !important;
  }
}

@media print {
  /* Remove browser print margins */
  @page {
    margin: 0;
  }

  body,
  .ticket-print-area {
    font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
    font-size: 16px !important;
    color: #000 !important;
  }

  .ticket-print-area {
    line-height: 1.1 !important;
  }

  .ticket-header,
  .ticket-footer {
    display: block;
  }

  .ticket-print-area {
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
  }

  /* Hide everything */
  body * {
    visibility: hidden !important;
  }

  /* Show only the ticket */
  .ticket-print-area,
  .ticket-print-area * {
    visibility: visible !important;
  }

  /* Force the ticket to shrink to its content */
  .ticket-print-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px; /* 80mm printer */
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    background: #fff !important;
    box-shadow: none !important;

    /* CRITICAL: prevent extra blank space */
    height: auto !important;
    overflow: visible !important;
  }

  /* Hide all buttons/forms */
  button,
  form,
  .save,
  .clear,
  .del {
    display: none !important;
  }

  /* Remove table spacing that can add height */
  table {
    border-collapse: collapse !important;
  }

  .l_card {
    display: none;
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  .ticket-print-area {
    height: auto !important;
    overflow: visible !important;
  }

  .display_nums {
    width: 100%;
    table-layout: fixed;
  }

  .display_nums th,
  .display_nums td {
    padding: 2px 0 !important;
    font-size: 16px !important;
    text-align: left;
    white-space: nowrap;
  }

  /* Column widths */
  .display_nums th:nth-child(1),
  .display_nums td:nth-child(1) {
    width: 60px; /* num */
    text-align: left;
  }

  .display_nums th:nth-child(2),
  .display_nums td:nth-child(2) {
    width: 60px; /* amount */
    text-align: right;
  }

  .display_nums th:nth-child(3),
  .display_nums td:nth-child(3) {
    width: 60px; /* bx/p2 */
    text-align: center;
  }

  /* Hide delete column */
  .display_nums th:nth-child(4),
  .display_nums td:nth-child(4) {
    display: none !important;
  }
}

.code {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 12px;
  border-radius: 6px;
  font-family: Consolas, monospace;
}

.kw {
  color: #569cd6;
}
.var {
  color: #9cdcfe;
}
.str {
  color: #ce9178;
}

.msg {
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-weight: 500;
}
.msg.info {
  background: #dbecf5;
  color: #003049;
}
.msg.success {
  background: #d4f8d4;
  color: #0a6b0a;
}
.msg.warning {
  background: #fff4cc;
  color: #8a6d00;
}
.msg.error {
  background: #ffd6d6;
  color: #8a0000;
}

.limit-error {
  color: red;
  font-weight: bold;
  padding: 6px 0;
}

.message1 {
  color: inherit !important;
}

.message {
  font-weight: bold;
  padding: 6px 0;
}

/* Red */
.message.error,
.alert-error {
  color: #d60000 !important;
  font-weight: 600;
}

/* Green */
.message.success,
.alert-success {
  color: #0a8f00;
  font-weight: 600;
}

/* Orange / Yellow */
.message.warning,
.alert-info {
  color: #e68a00;
  font-weight: 600;
}

.alert {
  color: #06557a;
  font-weight: 600;
}

/* Clickable header */
.collapse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 7px 14px;
  color: rgb(9, 135, 177);
  background: #e2eff6;
  border-radius: 6px;
  border: none;
  outline: none;
  border-bottom: 1px solid #0d6e9ac9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 6px;
  font-family: Roboto, Calibri, "Trebuchet MS", sans-serif;
  font-weight: 600;
  font-size: 13px;
}

/* Arrow rotation */
.collapse-header i {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(90deg);
}

/* Collapsible body — CLOSED by default */
.collapsible {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease; /* No fade, only height */
}

.collapsible {
  overflow: hidden;
  height: 0;
  padding: 0; /* no padding when closed */
  transition:
    height 0.3s ease,
    padding 0.3s ease;
}

.collapsible.open {
  padding: 12px; /* or whatever your card_sec normally uses */
}

#pending-wrapper {
  max-height: 800px !important; /* or whatever height you want */
  overflow-y: auto;
}

.form-inline select,
option {
  color: whitesmoke !important;
}

.form-inline input[type="date"] {
  min-width: 150px;
  padding: 5px 10px;
  background: rgb(9, 122, 192);
  color: whitesmoke;
  border: none;
  outline: none;
  border-radius: 5px;
  border-bottom: 1px solid rgb(13, 100, 151);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.334);
}
