/* body {
    background: #F9F9F9;
} */
.primary {
    color: #206A7F;
}
.primary:hover {
    color: rgba(32, 106, 127, 0.9);
}
.secondary {
    color: #707070;
}
.badge {
    padding: 0.75rem;
    font-size: 1rem;
}
.badge.success {
    background: #E8FFCE;
    color: #2E9F0C;
}
.badge.warning {
    background: #FFF3CD;
    color: #706C0C;
}
.badge.danger {
    background: #F8D7DA;
    color: #C82333;
}
.primary-btn, .primary-outline-btn, .danger-btn {
    height: 50px;
    min-width: 180px;
    font-weight: 600;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 1rem;
}
.primary-btn {
    background: #206A7F;
    color: #FFFFFF;
}
.primary-btn:hover, .primary-btn:active, .primary-btn:focus {
    background: rgba(32, 106, 127, 0.9) !important;
    color: #FFFFFF !important;
}
.primary-btn:disabled {
    background: rgba(32, 106, 127, 0.6) !important;
    color: #FFFFFF !important;
}
.primary-outline-btn {
    background: #FFFFFF;
    color: #206A7F;
    border-color: #206A7F;
}
.primary-outline-btn:hover, .primary-outline-btn:active, .primary-outline-btn:focus {
    background: rgba(32, 106, 127, 0.15);
    color: #206A7F;
    border-color: rgba(32, 106, 127, 0.15);
}
.primary-outline-btn:disabled {
    background: rgba(192, 192, 192, 0.5);
    color: #206A7F;
}
.danger-btn {
    background: #DD0417;
    color: #FFFFFF;
}
.danger-btn:hover, .danger-btn:active, .danger-btn:focus {
    background: #DD0417;
    color: #FFFFFF;
}
.danger-btn:disabled {
    background: rgba(221, 4, 23, 0.5);
    color: #FFFFFF;
}
.hero-box {
    min-height: 250px;
    max-height: 500px;
    margin-bottom: 2rem;
}
.hero-box .hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breadcrumb-container {
    padding-top: 2rem;
}
.breadcrumb {
    display: flex;
    align-items:  center;
    margin-bottom: 0;
}
.breadcrumb a {
    text-decoration: none;
    color: #707070;
}
.breadcrumb a:hover {
    color: #206A7F;
}
.breadcrumb .current {
    display: flex;
    align-items:  center;
    gap: 0.5rem;
    color: #206A7F;
}
.filters {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    direction: rtl;
}
.filters li {
    padding: 0.75rem 1.5rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s;
}
.filters li a {
    color: black;
}
.filters li:hover {
    background-color: #F6FDFF;
    border-bottom-color: #206A7F;
}
.filters li.active {
    background-color: #F6FDFF;
    border-bottom-color: #206A7F;
}
.form-group {
    width: 100%;
    margin-bottom: 2rem;
}
.form-label {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #0B2746;
}
.input-wrapper {
    position: relative;
}
.input-wrapper .form-control {
    padding-left: 3rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 1rem;
}
.form-control {
    height: 55px;
    border: 1px solid #EAEAEA;
    border-radius: 1rem;
    font-size: 1rem;
    color: #555555;
    transition: border-color 0.2s;
}
.form-control:focus {
    border-color: #206a7f;
    outline: none;
    box-shadow: none;
}
.form-control.small {
    font-size: 14px;
}
.form-control.small::placeholder {
    font-size: 14px;
}
.form-select {
    background-position: left 0.75rem center;
    padding-left: 2.5rem;
    padding-right: 0.75rem;
    direction: rtl;
    cursor: pointer;
}
.bank-account .content .title {
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 20px;
}
.bank-account .content .details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.bank-account .content .account-number {
    flex-grow: 1;
    border: 1px solid #EAEAEA;
    padding: 1rem;
    border-radius: 1rem;
}
.bank-account .content .copy {
    background: #206A7F;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    cursor: pointer;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}
#toast {
    position: fixed;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.image .sharing-box {
    background-color: #00000073;
    padding: 10px;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 10px;
    display: none;
}

.image:hover .sharing-box {;
    display: block;
}

.image .sharing-box .link {
    padding-inline: 5px;
    color: #ffffff;
}
