        body {
            margin: 0;
            padding: 0;
            background-color: #1a1a1a;
            min-height: 100vh;
        }

        .btn-small {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 10px 20px;  /* Increased padding */
            border-radius: 4px;
            cursor: pointer;
            font-family: Arial, sans-serif;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            min-width: 120px;  /* Ensures enough space for text */
        }

        .btn-small:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
        }

        .btn-small:active {
            transform: translateY(0);
            box-shadow: none;
        }

        /* Dropdown styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }



        .dropdown-content.show {
            display: block;
            animation: fadeIn 0.2s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .dropdown-section {
            padding: 12px 20px;
        }

   /* Dropdown styles */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);  /* Made darker for better contrast */
    backdrop-filter: blur(10px);
    min-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    z-index: 1;
    padding: 16px 0;
    margin-top: 8px;
}

.dropdown-section h3 {
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 8px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    font-weight: 600;
}

.dropdown-link {
    display: block;
    color: #FFFFFF !important;  /* Force white color */
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 10px 0;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    margin: 4px 0;
}

.dropdown-link:hover {
    color: #FFFFFF !important;  /* Keep white on hover */
    border-left: 2px solid white;
    padding-left: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .dropdown-content {
                position: fixed;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 90%;
                max-width: 320px;
                max-height: 80vh;
                overflow-y: auto;
            }

            .btn-small {
                font-size: 12px;
                padding: 8px 16px;
            }
        }