/* Discord Auth Styling */
.btn-discord {
    background-color: #5865F2;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-discord:hover {
    background-color: #4752c4;
}

.auth-status {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}

.auth-status p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.auth-required {
    border: 2px solid var(--accent-blue);
    background-color: rgba(83, 109, 254, 0.1);
}

/* Application Status based on Auth */
.application-status-auth {
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
}

.status-authenticated {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
}

.status-not-authenticated {
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
}

.status-warning {
    background-color: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning);
}