/* Enhanced Modern CSS */

/* Footer Logo */
.footer__top img {
    max-width: 250px;
    max-height: 43px;
    transition: transform 0.3s ease-in-out;
}

.footer__top img:hover {
    transform: scale(1.1);
}

/* Modal Content */
.modal-content {
    background-color: #1f1f2e;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

/* Close Button */
.close, .close:hover {
    color: #ffffff;
    opacity: 1;
    font-size: 1.2rem;
    transition: color 0.2s ease-in-out;
}

.close:hover {
    color: #cca354;
}

/* Custom Input Group */
.custom-input-group {
    background-color: transparent !important;
    border: none !important;
    padding: 0;
}

/* Country Select Dropdown */
.country-select {
    height: 50px;
    border-radius: 5px;
    background-color: #242431;
    color: #ffffff;
    border: 1px solid #cca354;
    padding: 0 15px;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.country-select:focus {
    background-color: #1a1a28;
    border-color: #e5c07b;
}

/* Phone Input Letter */
#phoneInput .letter {
    border: 1px solid #cca354 !important;
    background: transparent !important;
    padding: 10px;
    color: #ffffff;
}

#phoneInput .letter + .letter {
    border-left: 1px solid #cca354 !important;
}

/* Cards */
.card {
    box-shadow: 0 0 20px rgba(204, 163, 84, 0.7);
    background-color: #111;
    border: 2px solid rgba(204, 163, 84, 0.6);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(204, 163, 84, 0.9);
}

/* List Group Item */
.list-group-item {
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    border: 1px dashed rgba(204, 163, 84, 0.3);
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, border 0.3s ease-in-out;
}

.list-group-item:hover {
    background-color: rgba(204, 163, 84, 0.1);
    border: 1px solid rgba(204, 163, 84, 0.5);
}

/* Buttons */
.btn {
    border-radius: 5px;
    padding: 10px 35px;
    background-color: #cca354;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn:hover {
    background-color: #e5c07b;
    color: #000;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}

/* Common Section */
.cmn-section {
    padding: 150px 0;
    background: #242431;
}

/* Table Header */
.table.style--two thead tr th {
    color: #ffffff;
    background-color: #1a1a28;
    padding: 15px;
    border-bottom: 2px solid #cca354;
}

/* Card Header */
.card .card-header {
    background-color: #cca354;
    color: #111;
    font-weight: bold;
    border-bottom: 1px solid #e5c07b;
}

/* Input Group Text */
.input-group-text {
    background-color: #cca354;
    border: 1px solid #cca354;
    color: #ffffff;
    font-weight: bold;
}

/* Main Menu */
.header .main-menu li .sub-menu li a {
    color: #ffffff !important;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.header .main-menu li .sub-menu li a:hover {
    color: #e5c07b !important;
}

/* Referral List */
.referral-ul li {
    padding-left: 1em;
    border: 1px dotted #ffffff;
    border-width: 0 0 1px 1px;
    margin-bottom: 10px;
    color: #ffffff;
    transition: border-color 0.3s ease-in-out;
}

.referral-ul li:hover {
    border-color: #e5c07b;
}

.referral-ul li.container {
    border-bottom: 0;
    width: 100%;
}

.referral-ul li.empty {
    font-style: italic;
    color: silver;
    border-color: silver;
}

.referral-ul li p {
    margin: 0;
    position: relative;
    top: 0.5em;
    padding-bottom: 3px;
    color: #ffffff;
}

.referral-ul li ul {
    border-top: 1px dotted #ffffff;
    margin-left: -1em;
    padding-left: 2em;
}

.referral-ul ul li:last-child ul {
    border-left: 1px dotted #ffffff;
    margin-left: -17px;
}

/* Padding Top */
.pt-60 {
    padding-top: 60px !important;
}
