body {
    overflow-x: hidden;
    background-color: #141B2D !important;
    font-family: "Montserrat", sans-serif;
}

*,
*::before,
*::after,
*:hover {
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
}



/* Hide the number input spinner in modern browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}



.Toastify__toast {
    font-size: 15px;
}

.table-fixed-width {
    table-layout: fixed;
    width: 100%;
}

.table-fixed-width th, .table-fixed-width td {
    width: 20%; /* This ensures each column takes up 20% of the width, making them equal */
    text-align: start; /* Optional: This centers the text in the cells */
}

@media (max-width: 768px) {
    .table-fixed-width {
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}


/* colors */
.light-purple-color {
    color: #7d84ab;
}

.white-color {
    color: white;
}

.half-white-color {
    color: #E0E0E0;
}

.light-red-bg {
    background-color: #dd4646 !important;
}

.red-color {
    color: red;
}

.red-bg {
    background: red;
}

.light-blue-bg {
    background-color: #1F2A40;
}

.white-color {
    color: white !important
}

.green-color {
    color: #4CCEAC !important;
}

.green-bg {
    background-color: #4CCEAC !important;
}

/* paddings */
@media only screen and (max-width: 575px) {
    .paddinglr10 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.paddingtop100 {
    padding-top: 100px;
}

.paddingtopbtm100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.paddingtopbtm40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.paddingtopbtm30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.paddingtopbtm50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.paddingtopbtm60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.paddingbtm60 {
    padding-bottom: 60px;
}

.paddingbtm40 {
    padding-bottom: 40px;
}

.paddingtop60 {
    padding-top: 60px;
}

.paddingtop50 {
    padding-top: 50px;
}

.paddingtop40 {
    padding-top: 40px;
}

.paddingtop30 {
    padding-top: 30px;
}

.paddingbtm30 {
    padding-bottom: 30px;
}

.paddingleftright50 {
    padding-left: 50px;
    padding-right: 50px;
}

.padding20 {
    padding: 20px;
}

.padding10 {
    padding: 10px;
}

.paddingbtm10 {
    padding-bottom: 10px;
}

.paddingbtm30 {
    padding-bottom: 30px;
}

.paddingbtm50 {
    padding-bottom: 50px;
}

.paddingtop30 {
    padding-top: 30;
}

.paddingbtm20 {
    padding-bottom: 20px;
}

.paddingtop20 {
    padding-top: 20px;
}

.paddingtop10 {
    padding-top: 10px;
}


/* margins */
.marginbottom30 {
    margin-bottom: 30px;
}

.margintop60 {
    margin-top: 60px;
}

.margintopbtm50 {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-top: 10px;
}

.margintop10 {
    margin-top: 10px;
}

.margintopbtm60 {
    margin-top: 60px;
    margin-bottom: 60px;
}

.marginbtm60 {
    margin-bottom: 60px;
}

.border-radius-50 {
    border-radius: 50%;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-15 {
    border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
}

.top-radius-15 {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.bottom-radius-15 {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}


/* form  */
.form-control {
    color: #4CCEAC !important;
    background-color: #293040 !important;
    border: 0px solid !important;
}

.form-select {
    color: #B6BBC2 !important;
    background-color: #293040 !important;
    border: 0px solid !important;
}

.form-control,
.form-select {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7) !important;
    padding: 12px 10px !important;
}

.form-control::placeholder {
    color: #B6BBC2 !important;
    opacity: 1;
}


.form-control:focus,
.form-select:focus,
.form-control:hover,
.form-select:hover {
    outline: unset !important;
    border: unset !important;
    box-shadow: unset !important;
}

/* moving placeholder and labels on focus */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px 10px;
    font-size: 16px;
    background-color: #293040;
    color: #4CCEAC;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    outline: none;
}


label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #B6BBC2;
    pointer-events: none;
    transition: all 0.2s ease;
}

form .form-check label {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    color: #e0e0e0 !important;
    pointer-events: auto;
    font-size: 16px;
    color: inherit;
}

.form-control:focus::placeholder {
    color: transparent !important;
    transition: color 0.2s ease;
}

.form-control:not(:focus)::placeholder {
    color: #B6BBC2 !important;
    transition: color 0.5s ease 0.2s;
}


.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 12px;
    color: #B6BBC2;
}


/* buttons */
.green-btn {
    background-color: #4CCEAC !important;
    padding: 7px 25px !important;
    color: black !important;
    border: unset !important;
    outline: unset !important;
}

/* custom date icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM7 12h5v5H7z"/></svg>') no-repeat center;
    background-size: 16px 16px;
    cursor: pointer;
    opacity: 1;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.1 0-1.99.9-1.99 2L3 20c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM7 12h5v5H7z"/></svg>') no-repeat center;
    background-size: 16px 16px;
    cursor: pointer;
    opacity: 1;
}

input[type="date"]::-ms-expand {
    display: none;
}

input[type="date"]::-moz-focus-inner {
    border: 0;
}

input[type="date"] {
    position: relative;
    padding-right: 40px;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="white" viewBox="0 0 24 24"><path d="M12 2c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-.5-13h-2v6l5.25 3.15.75-1.23-4.5-2.67V7z"/></svg>') no-repeat center;
    background-size: 16px 16px;
    cursor: pointer;
    opacity: 1;
}

input[type="time"]::-ms-expand {
    display: none;
}

input[type="time"]::-moz-focus-inner {
    border: 0;
}

input[type="time"] {
    position: relative;
    padding-right: 40px;
}

.grey-color {
    color: #b5b5b5 !important;
}

.dark-grey-color {
    color: #4F5E71 !important;
}

/* table style */
thead tr th {
    background: #3E4396 !important;
    color: white !important;
    padding: 20px 20px !important;
    font-weight: normal;
    cursor: pointer;
}

tbody tr td {
    background: #1F2A40 !important;
    font-size: 14px;
    padding: 20px 20px !important;
}

tr {
    border-bottom-color: #515151 !important;
}

table {
    border-radius: 10px !important;
}

.activity-members div {
    background-color: white;
    padding: 5px;
    font-size: 11.5px;
    display: inline-block;
    margin-right: 3px;
    margin: 5px 10px 5px 0px;
    border-radius: 5px;
    width: fit-content;
    color: black;
}

.event-detail .desc {
    font-size: 13px;
}

.pagination-buttons button {
    background-color: transparent;
    color: #4CCEAC;
    border: 1px solid #4CCEAC;
    padding: 3px 12px;
    display: inline-block;
}


.pagination-buttons button.active-page {
    background-color: #4CCEAC;
    color: white;
}

.pagination-buttons button:disabled {
    color: #999;
    cursor: not-allowed;
}

/* Rounded corners for the first and last buttons */
.previous-paginate-btn {
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px;
}

.pagination-buttons button:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}