/* Unsubscribe Page Styling */

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.unsubscribe-container {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.icon-sad {
    font-size: 64px;
    color: #f59e0b;
    margin-bottom: 20px;
}

.icon-success {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

h1 {
    color: #0f172a;
    margin-bottom: 15px;
}

p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.email-display {
    background: #f1f5f9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
    color: #0f172a;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-secondary {
    background: #64748b;
    color: white;
}

.btn-secondary:hover {
    background: #475569;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.loading {
    display: none;
    margin: 20px 0;
}

.loading.active {
    display: block;
}

.hidden {
    display: none;
}
