/* Snack CSS - Custom Styles für Gewinnspiel Pro */

/* Auth Pages */
:root {
    --primary-color: #10b981;
    --secondary-color: #059669;
    --accent-color: #34d399;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --dark-border: #334155;
}

body.auth-page {
    background: var(--dark-bg);
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    color: white;
}

.auth-card {
    background: var(--dark-card);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.auth-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.auth-header-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.auth-link {
    color: #94a3b8;
    text-decoration: none;
}

.auth-link-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.auth-info-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted-auth {
    color: #94a3b8;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Form Controls */
.form-control {
    border-radius: 10px;
    border: 2px solid var(--dark-border);
    padding: 12px 16px;
    transition: all 0.3s ease;
    background: var(--dark-bg);
    color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
    background: var(--dark-bg);
    color: white;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-label {
    color: white;
    font-weight: 500;
}

.form-check-label {
    color: white;
}

.form-check-input {
    background-color: var(--dark-bg);
    border: 2px solid var(--dark-border);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
}

/* Input Group Icons */
.input-group-text-dark {
    background: #0f172a;
    border: 2px solid #334155;
    border-right: none;
    border-radius: 10px 0 0 10px;
    color: #10b981;
}

.input-icon-green {
    width: 18px;
    height: 18px;
    stroke: #10b981;
}

/* Input nach Icon */
.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

/* Role Cards */
.role-card {
    background: var(--dark-bg);
    border: 2px solid var(--dark-border);
    border-radius: 15px;
    padding: 1.5rem;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.role-card:hover {
    border-color: var(--primary-color);
    background: rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.role-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.role-icon-lucide {
    width: 24px;
    height: 24px;
    color: white;
}

.role-content {
    flex: 1;
}

.role-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.role-description {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

/* Sidebar */
.sidebar-logo {
    max-height: 35px;
    width: auto;
}

/* Phase Icons */
.phase-icon-lg {
    width: 80px;
    height: 80px;
}

.phase-icon-sm {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

/* Empty State Icon */
.empty-state-icon {
    width: 48px;
    height: 48px;
}

/* Alert Small */
.alert-sm {
    font-size: 0.875rem;
}

/* Cursor Pointer */
.cursor-pointer {
    cursor: pointer;
}

/* Scrollable List */
.scrollable-list {
    max-height: 250px;
    overflow-y: auto;
}

/* Drag Handle */
.drag-handle {
    cursor: move;
}

/* Legal Content */
.legal-content .container {
    max-width: 1200px;
}

.contact-info {
    background: var(--dark-bg-card);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}
