/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

/* Profile Form */
.container {
    max-width: 800px;
    margin: auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
h2 {
    font-size: 2rem;
    color: #343a40;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 10px;
}

/* Form Labels */
label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #495057;
}

/* Form Inputs */
input,
select,
textarea {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

button {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    border: none;
}

button:hover {
    background-color: #0056b3;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

/* Social Media Section */
.row>.col-md-4 {
    margin-bottom: 15px;
}

/* Profile Image and Background */
.mb-3 input[type="file"] {
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
}

h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

/* Adjustments for mobile view */
@media (max-width: 768px) {

    .col-md-4,
    .col-md-3,
    .col-md-6 {
        margin-bottom: 15px;
    }

    .container {
        padding: 15px;
    }
}