
/** ADD YOUR AWESOME CODES HERE **/
/* Popup container */
.popup1-container {
    background: #ffffff;
    padding: 20px;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: left;
}

/* Close button */
.popup1-container .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    color: #ff0000;
    cursor: pointer;
    border: none;
    background: none;
}

/* Table styling inside popup */
.popup1-container table {
    width: 100%;
    border-collapse: collapse;
}

/* Label styling */
.popup1-container label {
    font-weight: bold;
    color: #333;
}

/* Input fields, textarea, and select dropdown */
.popup1-container input,
.popup1-container select,
.popup1-container textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.popup1-container textarea {
    height: 70px;
    resize: none;
}

/* Buttons */
/* .popup1-container button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
} */
/* 
.popup1-container button[type="submit"] {
    background-color: #28a745;
    color: white;
}

.popup1-container button[type="submit"]:hover {
    background-color: #218838;
}

.popup1-container button[type="button"] {
    background-color: #dc3545;
    color: white;
}

.popup1-container button[type="button"]:hover {
    background-color: #c82333;
}
/* Centering the buttons */
.popup1-container .button-container {
    text-align: center;
    margin-top: 15px;
} */

/* Buttons styling */
.popup1-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 5px;
    display: inline-block; /* Ensures buttons stay in line */
}