/* Basic Resets & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    background-color: rgba(29, 39, 92);/* Light grey background */
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden; /* Hide scrollbars on body, pages will handle their own */
}

.report-btn {
    background-image: linear-gradient(to right, #007aff, #8a2be2); /* Blue to Purple gradient */
    color: white;
    border: none;
    padding: 4px 5px;
    border-radius: 10px;
    font-size: 0.65em;
    font-weight: 300;
    cursor: pointer;
    font-size: 1em;
    width: 100px; /* Slightly narrower than full width */
    height:30px;
    display: inline-block;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
    margin-bottom: 5px;
}

.report-content {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    
    max-width: 350px; /* Max width for the ad box */
    width: 90%; /* Responsive width */
    max-height: 90vh;
    overflow-y:auto; /* Enable scrolling for page content */
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative; /* For close button positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-content h2 {
    font-size: 1.6em;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.report-content p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.0;
}

.report-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.5);
}

.search-form {
    text-align: left;
    width: 100%; /* Ensure form takes full width of its parent content box */
}

.search-form .form-group-search {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-around;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

.search-form label {
    display: block;
    font-size: 0.9em;
    color: #f6f3f3;
    margin-bottom: 5px;
    font-weight: 400;
}

.search-form input[type="text"],
.search-form input[type="email"],
.search-form input[type="password"] {
    display:inline-flex;
    padding: 4px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
      height:30px;
    font-size: 1em;
    color: #5f5d5d;
    background-color: #f9f9f9;
}

.search-form input::placeholder {
    color: #a0a0a0;
}

.search-form input:focus {
    outline: none;
    border-color: #000066;
    box-shadow: 0 0 0 3px rgba(2, 3, 78, 0.4);
}


/* Media Queries for responsiveness */
@media (min-width: 768px) {
    body {
        max-width: 450px;
        margin: 0 auto;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
    }
}
