/* ====== Form Container ====== */
.addForm {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    max-width: 500px;
    margin: 30px auto;
    position: relative;
    transition: all 0.3s ease;
    display: none;
}

/* Close Button */
.dismise {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
}

.dismise:hover {
    color: #f44336;
}

/* Form Title */
.addForm h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 22px;
    color: #1e88e5;
}

/* Form Fields */
.addForm form input,
.addForm form select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.addForm form input:focus,
.addForm form select:focus {
    border-color: #1e88e5;
    box-shadow: 0 0 5px rgba(30, 136, 229, 0.3);
    outline: none;
}

/* Label Styling */
.selectDiv label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

/* Submit Button */
.addForm form button[type="submit"] {
    background-color: #1e88e5;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.addForm form button[type="submit"]:hover {
    background-color: #1565c0;
}
