/**
 * Tools Authentication Styles
 */

/* Login Required Section */
.login-required-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.login-required-section .card {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.login-required-section h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.login-required-section p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
}

/* Login Buttons */
.login-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .login-buttons {
        flex-direction: column;
    }
    
    .login-buttons .btn {
        width: 100%;
    }
}

/* Discord Roles Info */
.discord-roles-info {
    background-color: rgba(88, 101, 242, 0.1);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.discord-roles-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.discord-roles-info p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.discord-roles-info ul {
    list-style-type: none;
    padding: 0;
}

.discord-roles-info li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-roles-info li:last-child {
    border-bottom: none;
}

.discord-roles-info strong {
    color: var(--primary-color);
}

.roles-note {
    font-style: italic;
    text-align: center !important;
    margin-top: 1rem !important;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Role Badges */
.role-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.role-badge.admin {
    background-color: #f04747;
    color: white;
}

.role-badge.vip {
    background-color: #faa61a;
    color: white;
}

.role-badge.premium {
    background-color: #7289da;
    color: white;
}

.role-badge.designer {
    background-color: #43b581;
    color: white;
}

.role-badge.free {
    background-color: #99aab5;
    color: white;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Access Error Section */
.access-error-section h2 {
    color: #ff5757;
    margin-bottom: 1rem;
}

.access-error-section p {
    margin-bottom: 1rem;
}

.access-error-section ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.access-error-section li {
    margin-bottom: 0.5rem;
}

/* Hidden Class */
.hidden {
    display: none !important;
} 