/* ------------------------------------- */
/* 1. Main Policy Styling */
/* ------------------------------------- */
body { 
    font-family: Arial, sans-serif; 
    line-height: 1.6; 
    padding: 20px; 
}
main { 
    max-width: 800px; 
    margin: 0 auto; 
}
h1 { 
    color: #333; 
    border-bottom: 2px solid #ccc; 
    padding-bottom: 10px; 
}
h2 { 
    color: #555; 
    margin-top: 25px; 
}
ul { 
    list-style-type: disc; 
    margin-left: 20px; 
}
p.effective-dates { 
    font-style: italic; 
    color: #777; 
    font-size: 0.9em; 
}
.copyright-notice { 
    text-align: center; 
    margin-top: 40px; 
    padding: 10px; 
    border-top: 1px solid #eee; 
    font-size: 0.9em; 
}

/* --- UNIFIED Button Styling for BOTH Request and Report --- */
.request-button, 
.report-button {
    background-color: #5cb85c; /* Green - Unified color */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 15px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    transition: background-color 0.3s;
}
.request-button:hover,
.report-button:hover {
    background-color: #4cae4c;
}
/* -------------------------------------------------------- */


/* ------------------------------------- */
/* 2. Modal/Pop-up Styling */
/* ------------------------------------- */

/* The Modal Backdrop (Dark overlay) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; /* Enable scroll if content is long */
    background-color: rgba(0,0,0,0.6); 
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 90%; 
    max-width: 650px; 
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

/* Add Animation (optional but nice) */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

/* The Close Button */
.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* ------------------------------------- */
/* 3. Form Styling */
/* ------------------------------------- */
.copyright-form { 
    padding: 0; 
    border: none; 
    background: none; 
}
label { 
    display: block; 
    margin-top: 15px; 
    font-weight: bold; 
}
input[type="text"], 
input[type="email"], 
textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea { 
    resize: vertical; 
    height: 100px; 
}

/* Required Fields Indicator */
.required::after { 
    content: " *"; 
    color: red; 
}
.required-star {
    color: red;
}

/* Checkbox Alignment */
.checkbox-group label { 
    display: inline; 
    font-weight: normal; 
    margin-left: 5px;
}
.checkbox-group input[type="checkbox"] { 
    margin-right: 0;
}

/* Submit Button (Inside Forms) */
input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1em;
    width: 100%;
    transition: background-color 0.3s;
}
input[type="submit"]:hover { 
    background-color: #555; 
}

/* Disclaimer Text */
.disclaimer { 
    font-size: 0.85em; 
    color: #777; 
    margin-top: 20px; 
    padding: 10px;
    border: 1px dashed #ccc;
}