/* Dashboard-specific styles for Domain Generator */

body {
    padding: 0;
}

.header-info {
    margin-top: 20px;
    font-size: 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.header-info span {
    opacity: 0.8;
    color: #EEEEEE;
}

.logout-btn {
    background: rgba(0, 173, 181, 0.2);
    border: 1px solid rgba(0, 173, 181, 0.4);
    color: #00ADB5;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85em;
    transition: all 0.3s;
    font-family: inherit;
}

.logout-btn:hover {
    background: rgba(0, 173, 181, 0.3);
    border-color: rgba(0, 173, 181, 0.6);
    transform: translateY(-1px);
}

.version-badge {
    font-family: 'Monaco', 'Menlo', monospace;
    background: rgba(0, 173, 181, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 173, 181, 0.3);
    color: #00ADB5;
}

.content {
    padding: 40px;
}

.app-description {
    margin-bottom: 30px;
}

.app-description h3 {
    color: #EEEEEE;
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-description h3::before {
    content: '⚡';
    font-size: 1.2em;
}

#appDescriptionInput {
    resize: vertical;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.app-description p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #d1d5db;
    line-height: 1.6;
}

.controls {
    margin-top: 30px;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#generateBtn {
    background: #00ADB5;
    border-color: #00ADB5;
    color: #222831;
    box-shadow: 0 4px 15px rgba(0, 173, 181, 0.4);
}

#generateBtn:hover:not(:disabled) {
    background: #00c4ce;
    box-shadow: 0 8px 25px rgba(0, 173, 181, 0.5);
}

#domainsContainer {
    margin-top: 30px;
}

#domainsContainer h3 {
    color: #EEEEEE;
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

#domainsContainer h3::before {
    content: '🌐';
}


textarea {
    font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
    font-size: 14px;
    resize: vertical;
    white-space: pre;
    overflow-wrap: normal;
    overflow-x: auto;
}


.stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 173, 181, 0.2);
}

.stat {
    background: rgba(0, 173, 181, 0.1);
    padding: 20px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 173, 181, 0.3);
    flex: 1;
    min-width: 150px;
    transition: all 0.3s;
}

.stat:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 173, 181, 0.5);
    box-shadow: 0 8px 20px rgba(0, 173, 181, 0.2);
}

.stat-label {
    font-size: 12px;
    color: #d1d5db;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #00ADB5;
}

/* Loading overlay styles */
#loading-overlay {
    background: rgba(34, 40, 49, 0.95) !important;
    backdrop-filter: blur(10px);
}

#loading-overlay > div {
    background: #393E46 !important;
    border: 1px solid rgba(0, 173, 181, 0.3) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(0, 173, 181, 0.2) !important;
}

#progress-fill {
    background: #00ADB5 !important;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    
    .content {
        padding: 20px;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    button {
        width: 100%;
    }
}

