/* Custom Header Search Layout */
.custom-acad-filter-card {
    border-radius: 12px;
    padding: 15px;
    background: #fff;
}

.custom-table-header-title {
    font-size: 20px;
    font-weight: 500;
    color: #111;
}

.custom-search-icon-left {
    position: relative;
    width: 60%;
}

.custom-search-icon-img {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
}

.custom-search-input {
    border-radius: 12px;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #E4E4E4;
    width: 100%;
    outline: none;
    box-shadow: 0px 1px 2px 0px #00000014;
    height: 40px;
}

.custom-search-btn {
    border-radius: 12px;
    padding: 8px 14px;
    border: 1px solid #E4E4E4;
    background: #fff;
    color: #333;
    box-shadow: 0px 1px 2px 0px #00000014;
}

.custom-search-btn:hover {
    border: 1px solid #ccc;
    background: #f8f9fa;
    color: #333;
}

.custom-add-btn {
    border-radius: 15px;
    padding: 8px 12px;
    background: #21236A;
    color: #fff;
    border: 1px solid #21236A;
}

.custom-add-btn:hover {
    background: #191a50;
    /* Slightly darker shade of #21236A */
    color: #fff;
}

/* Custom Modal Styles */
.custom-modal-content {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    padding: 40px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    background-color: #F3F4F6;
}

.custom-modal-content .modal-body {
    padding: 0;
}

.country-add-modal-submit-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.custom-modal-title {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin-bottom: 5px;
}

.custom-modal-subtitle {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 25px;
}

.custom-modal-input {
    border-radius: 14px;
    box-shadow: 0px 1px 2px 0px #00000014;
    color: #111;
}

.custom-modal-input::placeholder {
    color: #393B40;
    font-size: 16px;
}

.custom-modal-label {
    color: #000;
    font-size: 16px;
}

.custom-modal-btn-submit {
    width: 104px;
    height: 34px;
    border-radius: 12px;
    padding: 11px 12px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    background-color: #21236A;
    color: #fff;
    border: none;
}

.custom-modal-btn-submit:hover {
    background-color: #1a1b54;
    color: #fff;
}

.custom-modal-close {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    padding: 8px;
    border: 1px solid #E5E7EB;
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #fff;
    opacity: 1;
    z-index: 10;
    box-shadow: 0px 4px 5px 0px #00000008;
}

@media (max-width: 767px) {

    .custom-acad-filter-card,
    .table-wrap {
        margin: 10px !important;
    }
}

@media (max-width: 1024px) {
    .custom-search-input {
        font-size: 11px;
    }

    .custom-search-input::placeholder {
        font-size: 12px;
    }
}