/* school-story-style.css */
.tss-form-container {
    background: #f9f9f9;
    padding: 20px;
    max-width: 600px;
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.tss-form label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}
.tss-form input[type="text"],
.tss-form input[type="email"],
.tss-form select,
.tss-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.tss-form button {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.tss-form button:hover {
    background-color: #004999;
}
.checkbox-group {
    margin-top: 15px;
}
.checkbox-group label {
    font-weight: normal;
    display: inline;
}

/* Popup styles */
.tss-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.tss-popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}
.tss-popup-box p {
    font-size: 18px;
    margin-bottom: 20px;
}
.tss-popup-box button {
    background: #007b5e;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
.tss-popup-box button:hover {
    background: #005a45;
}
/* Hide both modals on page load */
#ssp-popup-overlay,
.ssp-modal,
#ssp-popup,
#ssp-preview-modal {
    display: none !important;
}
