/* Global Styles */
/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #333; */
    /* line-height: 1.6; */
/* } */

/* Header Styles */
/* header {
    background-color: #000000;
    color: #fff;
    padding: 10px 0;
    border-bottom: 2px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/* header h1 {
    margin: 0;
} */

/* Navigation Styles */
/* nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
} */

/* Main Content Styles */
main {
    padding: 20px;
    flex-grow: 1;
    display: block; /* Ensure main content stacks below the header */
    min-height: calc(100vh - 150px); /* Adjust for the footer */
}

/* Title Styles */
h2 {
    color: #004080;
}

.broker-list-title {
    width: 100%;
    margin: 20px 0 0;
    padding: 20px 0;
    font-size: 24px;
    text-align: center;
    border-bottom: 2px solid #ccc;
}

/* Content Wrapper Styles */
.content-wrapper {
    display: block; /* Stack the content below the title */
    margin-top: 20px;
}

/* Broker List Styles */
.broker-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.broker-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Broker Logo Styles */
.broker-logo img {
    width: 100px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Broker Details Styles */
.broker-details {
    flex: 1;
}

.broker-details h3 {
    margin: 0 0 10px;
    color: #004080;
    font-size: 20px;
}

.broker-details p {
    margin: 5px 0;
    color: #333;
    font-size: 14px;
}

/* Tag Styles */
.broker-details .tag {
    display: inline-block;
    background-color: #004080;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
    margin-top: 5px;
    border-radius: 3px;
    font-size: 12px;
}

/* Additional Regulator Tag Styles */
.broker-details .tag.regulator {
    background-color: #009688;
    color: #fff;
}

/* Footer Styles */
/* footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
} */

/* Categories Styles */
.categories {
    margin-bottom: 20px;
}

/* .category-btn {
    background-color: #004080;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: #003366;
    box-shadow: 0 0 8px rgba(0, 51, 102, 0.8), 
                0 0 16px rgba(0, 51, 102, 0.6),
                0 0 24px rgba(0, 51, 102, 0.4);
}

.category-btn.active {
    background-color: #002244;
} */

/* ------------------------------------------------------------------ */

.category-btn {
    padding: 10px 15px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #000;                     
    background-color: #fff;         
    border: 1px solid #000;         
    border-radius: 45px;            
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease 0s;   
    cursor: pointer;                
    outline: none; 
}

.category-btn:hover {
    background-color: #21edea;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.474);
    color: #000000;
    transform: translateY(-7px);
}

.category-btn.active {
    background-color: #004080;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.474);
    transform: translateY(-1px);
    color: white;
}

/* Selected Regulators Box */
.selected-regulators-box {
    background-color: #e0e0e0;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Selected Regulator Tag */
.selected-regulator-tag {
    background-color: #004080;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

/* "X" Button for Removing Selected Regulator */
.selected-regulator-tag .remove-btn {
    margin-left: 5px;
    cursor: pointer;
    color: #ff0000;
}


/* Sidebar Styles */
.sidebar {
    width: 250px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 20px;
}

.regulator-filters {
    list-style-type: none;
    padding: 0;
}

.regulator-filters li {
    margin-bottom: 10px;
}

.regulator-checkbox {
    margin-right: 10px;
}

/* Main Content Styles */
.main-content {
    flex-grow: 1;
    margin-left: 0;
    display: flex;
    flex-direction: column;
}

.selected-regulators-box {
    background-color: #e0e0e0;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    display: none; /* Initially hidden */
}

.selected-regulators-box.show {
    display: flex; /* Show the box when it has selected items */
}

/* Responsive Layout */
@media (min-width: 768px) {
    .content-wrapper {
        display: flex; 
    }

    .main-content {
        margin-left: 20px; 
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 120px; /* Further adjust logo size for very small screens */
    }
}

/* ------------- */

/* Header Styles */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .logo {
    flex: 1;
} */

/* .search-bar {
    display: inline;
    align-items: center;
}

.search-bar input[type="text"] {
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
}

.search-bar button {
    padding: 6px 12px;
    font-size: 16px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
} */

/* Navigation Styles */
/* nav {
    margin-top: 10px;
    text-align: center;
} */

.menu-list {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.menu-list li {
    margin: 0 10px;
}

.menu-list a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.menu-list a:hover {
    /* text-decoration: underline; */
    color: #ffcc00; /* Change text color on hover */
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.8), /* Yellow glow */
                0 0 16px rgba(255, 204, 0, 0.6),
                0 0 24px rgba(255, 204, 0, 0.4);
}


