* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

img {
    width: 100%;
}

.main-wrapper {
    max-width: 576px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 2rem;
}

.section1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    margin-bottom: 5px;
}

.form-group label {
    font-weight: 500;
    color: #2d2d2d;
}

.section-title{
    color: #868686;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
}

.btn {
    border: none;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #488aec;
    color: #ffffff;
    font-size: 14px !important;
    text-decoration: none;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    user-select: none;
    box-shadow: 0 4px 6px -1px #488aec31, 0 2px 4px -1px #488aec17;
    transition: all 0.6s ease;
    min-width: 145px;
}
.btn:hover {
    box-shadow: 0 10px 15px -3px #488aec4f, 0 4px 6px -2px #488aec17;
}


.new-table {
    border-collapse: separate;
    border-radius: 10px;
    border-spacing: 0px !important;
    width: 100%;
  }
  
  .new-table th,
  .new-table td {
    border: none;
  }
  
  .new-table thead th {
    background: #efefef !important;
    border-top: none !important;
    border-bottom: 1px solid #d5d5d5 !important;
    font-weight: 500 !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid #d5d5d5 !important;
    color: #48494e !important;
    text-align: left !important;
    padding-bottom: 5px;
  }
  
  .new-table thead th:first-child {
    border-top-left-radius: 10px !important;
    border-left: 1px solid #d5d5d5 !important;
    padding-left: 1rem;
  }
  .new-table thead th:last-child {
    border-top-right-radius: 10px !important;
    border-right: 1px solid #d5d5d5 !important;
  }
  
  .new-table tbody tr td {
    padding: 0.5rem !important;
    border: none !important;
    background: #fefefe !important;
    border-bottom: 1px solid #d5d5d5 !important;
  }
  .new-table tbody tr td:first-child {
    border-left: 1px solid #d5d5d5 !important;
    padding-inline: 15px !important;
  }
  .new-table tbody tr td:last-child {
    border-right: 1px solid #d5d5d5 !important;
  }
  .new-table {
    border-radius: 10px !important;
  }
  
  .new-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
  }
  .new-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
  }
  
  .actions-wrap {
    display: flex;
    position: absolute;
    left: 80%;
    opacity: 0;
    transition: 0.3s ease-in-out;
    width: 250px;
    padding-left: 3rem;
    height: 5%;
    transition-delay: 0.1s;
    gap: 0.3rem;
  }
  .new-table tbody tr:hover .actions-wrap {
    display: flex;
    opacity: 1;
    left: 82%;
    transition: 0.4s ease-in-out;
  }
  
  .new-table-no-event {
    border-collapse: separate;
    border-radius: 10px;
    border-spacing: 0px !important;
  }
  
  .new-table-no-event th,
  .new-table-no-event td {
    border: none;
  }
  
  .new-table-no-event thead th {
    background: #efefef !important;
    border-top: none !important;
    border-bottom: 1px solid #d5d5d5 !important;
    font-weight: 500 !important;
    padding-top: 0.5rem !important;
    border-top: 1px solid #d5d5d5 !important;
    color: #48494e !important;
  }
  
  .new-table-no-event thead th:first-child {
    border-top-left-radius: 10px !important;
    border-left: 1px solid #d5d5d5 !important;
    padding-left: 1rem;
  }
  .new-table-no-event thead th:last-child {
    border-top-right-radius: 10px !important;
    border-right: 1px solid #d5d5d5 !important;
  }
  
  .new-table-no-event tbody tr td {
    padding-top: 1.5rem !important;
    border: none !important;
    background: #fefefe !important;
    border-bottom: 1px solid #d5d5d5 !important;
  }
  .new-table-no-event tbody tr td:first-child {
    border-left: 1px solid #d5d5d5 !important;
    padding-left: 15px !important;
  }
  .new-table-no-event tbody tr td:last-child {
    border-right: 1px solid #d5d5d5 !important;
  }
  .new-table-no-event {
    border-radius: 10px !important;
  }
  
  .new-table-no-event tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
  }
  .new-table-no-event tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
  }

  .accordion {
    background-color: #EFEFEF;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  .active, .accordion:hover {
    background-color: #d6d5d5; 
  }
  
  .panel {
    padding: 0 18px;
    display: none;
    background-color: white;
    overflow: hidden;
  }
  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }


.loader {
  border: 2.5px solid rgba(255, 255, 255, 1);
  border-left-color: transparent;
  width: 16px;
  height: 16px;
  animation: spin89345 1s linear infinite;
  border-radius: 50%;
  display: none;
}

@keyframes spin89345 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}