body {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.card {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: bold;
    color: #495057;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.icon-primary {
    color: #007bff;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.icon-success {
    color: #28a745;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.icon-secondary {
    color: #6c757d;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.icon-male {
    color: #007bff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.icon-female {
    color: #e83e8c;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.icon-alcohol {
    color: #ff8c42;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.icon-cigarette {
    color: #6c757d;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.icon-vape {
    color: #8a2be2;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.icon-male:hover,
.icon-female:hover,
.icon-alcohol:hover,
.icon-cigarette:hover,
.icon-vape:hover {
    transform: scale(1.1);
    color: #ff6b6b;
}

h2,
h3,
h4 {
    color: #343a40;
}

h2 {
    margin-bottom: 20px;
}

h3 {
    margin-top: 30px;
    margin-bottom: 20px;
}

h4 {
    margin-bottom: 15px;
}

.bg-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#form-container {
    display: flex;
    flex-direction: column;
}

#activityContainer {
    order: 1;
}

#saveButton {
    order: 2;
    margin-top: 10px;

}