.secure-login-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 0;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dashboard-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid #e9ecef;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
    background: #0C79CD;
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    font-size: 2rem;
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

.card-content {
    padding: 30px;
}

/* 2FA Card Styles */
.status-message {
    margin: 20px 0;
}

.status-active, .status-inactive {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 8px;
    background: #f8f9fa;
}

.status-active {
    color: #155724;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
}

.status-inactive {
    color: #721c24;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
}

.status-dot.active {
    background: #28a745;
    box-shadow: 0 0 8px rgba(40, 167, 69, 0.5);
}

.status-dot.inactive {
    background: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.5);
}

.profile-link {
    margin-top: 15px;
}

.profile-link-button {
    display: inline-block;
    background: #0C79CD;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(12, 121, 205, 0.3);
}

.profile-link-button:hover {
    background: #0a5a9c;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(12, 121, 205, 0.4);
    color: white;
}

.info-text {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0C79CD;
}

.info-text p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Custom Login URL Card Styles */
.login-url-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus {
    border-color: #0C79CD;
    box-shadow: 0 0 0 3px rgba(12, 121, 205, 0.1);
    background: white;
    outline: none;
}

.url-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-url {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 16px;
}

.preview-url code {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #0C79CD;
    font-weight: 500;
    word-break: break-all;
}

.save-button {
    background: #0C79CD;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(12, 121, 205, 0.3);
}

.save-button:hover {
    background: #0a5a9c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 121, 205, 0.4);
}

/* Coming Soon Cards */
.card-coming-soon {
    opacity: 0.7;
    filter: grayscale(30%);
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.card-coming-soon .card-header {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.card-coming-soon .card-header h3 {
    color: white;
}

.card-coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0C79CD;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(12, 121, 205, 0.4);
    border: 2px solid white;
}

.card-coming-soon .card-content p {
    color: #6c757d;
    margin: 0;
    font-style: italic;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .secure-login-dashboard {
        padding: 15px;
    }

    .dashboard-header {
        margin-bottom: 30px;
        padding: 20px 0;
    }

    .dashboard-header h1 {
        font-size: 2rem;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-header {
        padding: 20px 25px;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .card-content {
        padding: 25px;
    }

    .form-input {
        padding: 10px 14px;
    }

    .save-button {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dashboard-header h1 {
        font-size: 1.8rem;
    }

    .card-header {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .card-content {
        padding: 20px;
    }
}
