/* notif_styles.css */
body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f4f6f8;
    color: #333;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

h1.page-title, h2.section-title {
    text-align: center;
    color: #444;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-container input, 
.form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-container textarea {
    resize: none;
    height: 80px;
}

.primary-btn {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: #0056b3;
}

.notifications-container {
    max-width: 500px;
    margin: 20px auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f9f9f9; /* Keeps the background light */
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    color: #000; /* Set text color to black */
}

.notification-item strong {
    color: #444;
}

.message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.success {
    background-color: #e6f4ea;
    color: #277d42;
}

.error {
    background-color: #fdecea;
    color: #d93025;
}
/* Additional styles for the dropdown */
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.notification-container {
    display: flex; /* Enables side-by-side layout */
    justify-content: space-between; /* Adds space between elements */
    align-items: flex-start; /* Aligns items to the top */
    gap: 20px; /* Adds space between form and notifications */
}

.form-container, .notifications-container {
    width: 48%; /* Make each section take almost half the width */
}

.notifications-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.notification-item:last-child {
    border-bottom: none;
}
