/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #00ff00;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.nav-logo i {
    margin-right: 12px;
    font-size: 2rem;
    color: #00ff00;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #00ff00;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #00ff00;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.typing-text {
    font-size: 2rem;
    font-weight: 600;
    color: #00ff00;
    margin-bottom: 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #a8b2d1;
    margin-bottom: 16px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #00ff00;
    color: #000000;
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #00ff00;
}

.btn-secondary:hover {
    background: #00ff00;
    color: #000000;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 80px;
    color: #00ff00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #00ff00;
}

.feature-icon {
    background: #00ff00;
    border-radius: 12px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 2rem;
    color: #000000;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #8892b0;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.feature-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a8b2d1;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-stats i {
    color: #00ff00;
}

.btn-feature {
    background: #00ff00;
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.4);
}

/* Stats Section */
.stats {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #00ff00;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 12px;
}

.stat-label {
    color: #a8b2d1;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Download Section */
.download {
    padding: 120px 0;
}

.download-content {
    text-align: center;
}

.download-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00ff00;
}

.download-content p {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-download {
    background: #00ff00;
    color: #000000;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #00ff00;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 24px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000000;
    font-weight: 600;
}

.author-info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info span {
    color: #a8b2d1;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #111;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    border-color: #00ff00;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00ff00;
    width: 40px;
}

.contact-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #8892b0;
    font-size: 0.95rem;
}

.contact-form {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: text;
    cursor: text;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1);
    pointer-events: auto;
    user-select: text;
    cursor: text;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a8b2d1;
    pointer-events: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #00ff00;
    color: #000000;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.4);
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #333;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff00;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #00ff00;
    margin-right: 8px;
}

.footer-section p {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a8b2d1;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00ff00;
    color: #000000;
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00ff00;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #8892b0;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.4);
}

/* Generator Styles (for individual tool pages) */
.generator {
    padding: 120px 0;
}

.generator-content {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
}

.generator-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #00ff00;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: text;
    cursor: text;
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1);
    pointer-events: auto;
    user-select: text;
    cursor: text;
}

.form-group input::placeholder {
    color: #a8b2d1;
}

.btn-generate {
    background: #00ff00;
    color: #000000;
    padding: 16px 32px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-generate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 255, 0, 0.4);
}

/* Terminal Styles */
.terminal-container {
    background: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    overflow: hidden;
}

.terminal-header {
    background: #2d2d2d;
    padding: 15px 20px;
    border-bottom: 1px solid #404040;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #ff5f56; }
.terminal-dot.yellow { background: #ffbd2e; }
.terminal-dot.green { background: #27ca3f; }

.terminal-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.terminal-body {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #00ff00;
    background: #0a0a0a;
    padding: 20px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.terminal-line {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terminal-prompt {
    color: #00ff00;
    font-weight: bold;
}

.terminal-output {
    color: #ffffff;
}

.terminal-error {
    color: #ff4444;
}

.terminal-success {
    color: #00ff00;
}

/* Verification Styles */
.verification {
    padding: 120px 0;
}

.verification-step {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
}

.verification-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    text-align: center;
}

.verification-step p {
    color: #8892b0;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
}

.channel-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.channel-card:hover {
    transform: translateY(-2px);
    border-color: #00ff00;
}

.channel-card i {
    font-size: 2.5rem;
    color: #00ff00;
    margin-bottom: 16px;
}

.channel-card h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.channel-card p {
    color: #8892b0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-subscribe {
    background: #ff0000;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-subscribe:disabled {
    background: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-subscribe.subscribed {
    background: #00ff00;
    color: #000000;
}

/* Captcha Styles */
.captcha-container {
    text-align: center;
    margin: 30px 0;
}

.captcha-image {
    width: auto;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: none;
    margin: 0 auto;
    display: block;
}

.captcha-image:hover {
    border: none;
    box-shadow: none;
}

.captcha-text {
    margin-top: 10px;
    color: #8892b0;
    font-size: 0.9rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .typing-text {
        font-size: 1.5rem;
        min-height: 45px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .download-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .typing-text {
        font-size: 1.2rem;
        min-height: 36px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .verification-step {
        padding: 30px 20px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00cc00 0%, #009900 100%);
} 

/* Form group select styling */
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #00ff00;
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.1);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

.form-group select:hover {
    border-color: #00ff00;
}

/* Custom dropdown arrow */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300ff00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* Robux Generator Container */
.robux-generator-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.robux-generator-container input {
    flex: 1;
}

.btn-generate-robux {
    padding: 15px 20px;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-generate-robux:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
}

.btn-generate-robux:active {
    transform: translateY(0);
}

/* Username Dropdown Styles */
.username-dropdown {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #333;
    min-height: 50px;
}

.dropdown-item:hover {
    background: #333;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.avatar-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-item span {
    color: #ffffff;
    font-weight: 500;
}

/* Selected User Styles */
.selected-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    margin-top: 8px;
}

.selected-user .avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.selected-user span {
    color: #ffffff;
    font-weight: 600;
    flex: 1;
}

.btn-remove-user {
    background: #ff4444;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.8rem;
}

.btn-remove-user:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Disabled button styles */
.btn-generate:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-generate:disabled:hover {
    transform: none;
    box-shadow: none;
} 