body {
    background: #f8f9fd;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    background: #fff;
}

h1.card-title {
    font-weight: 700;
    color: #1c1c1c;
}

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

textarea.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
}

.btn-primary {
    background: linear-gradient(45deg, #ff9d00, #f24e1e);
    border: none;
    font-weight: 600;
    border-radius: 8px;
}
.btn-primary:hover {
    background: linear-gradient(45deg, #e67e00, #d13d0f);
}

.alert-success {
    background-color: #f0fff4;
    border: 1px solid #b8e9c2;
    color: #267a44;
    border-radius: 8px;
}

.btn-outline-secondary {
    border-color: #aaa;
    color: #333;
    border-radius: 6px;
}
.btn-outline-secondary:hover {
    background-color: #333;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
}
