/* eZe Smart Menu Styles */

/* Scope styles to the plugin container */
.eze-smart-menu-finance {
    /* Apply a dark radial gradient to the entire template */
    background: radial-gradient(ellipse at center, #0E665E, #00191d );
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}

.eze-smart-menu-finance .menu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* Centered the items for a cleaner look */
    padding: 0;
}

/* Individual menu section with enhanced drop shadow */
.eze-smart-menu-finance .menu-box {
    flex: 1 1 200px; /* Allows boxes to grow and wrap, creating flexible columns - EDITED */
    min-width: 200px; /* Ensures a minimum width before wrapping - EDITED */
    max-width: 250px; /* Prevents boxes from getting too wide - EDITED */
    padding: 15px;
    border: 1px solid #18645e; /* Border color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced drop shadow */
    background-color: rgba(255, 255, 255, 0.05); /* Subtle transparent background */
}

/* Header label styles */
.eze-smart-menu-finance .menu-header {
    font-size: 13px; /* Increased font size slightly */
    margin: -15px -15px 15px -15px; /* Adjust margin to span the full width of the box */
    padding: 10px 15px;
    font-weight: bold;
    text-align: center; /* Centered the text */
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d); /* More vibrant gradient */
    color: white;
    border-radius: 8px 8px 0 0; /* Rounded top corners */
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); /* Added a subtle border */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added text shadow for depth */
    text-transform: uppercase; /* Uppercase text for a stronger header feel */
}

/* Menu styles */
.eze-smart-menu-finance .menu-list {
    list-style-type: none;
    padding: 1px;
    margin: 1px;
}

.eze-smart-menu-finance .menu-list li {
    display: block;
}

/* Smooth hover effect styles */
.eze-smart-menu-finance .smooth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: white;
    font-size: 13px;
    position: relative;
    transition: color 0.5s ease, transform 0.5s ease;
    line-height: 2.50;
}

.eze-smart-menu-finance .smooth-link i {
    font-size: 14px;
}

.eze-smart-menu-finance .smooth-link:hover {
    color: #0dcefd;
    transform: scale(1.05);
}

/* Responsive Design */
/* The flexbox properties on .menu-box handle responsiveness for most screen sizes.
   The media query below is for very small screens to ensure a single column layout. */
@media (max-width: 600px) {
    .eze-smart-menu-finance .menu-box {
        flex-basis: 100%; /* 1 column for mobile screens */
        max-width: 100%;
    }
}

