/* 
    © 2025 Built Basics. All rights reserved.
    Author: Ruchi Singhania
    Description: Styles for Permit Checker Tool
*/

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;

}

html, body {
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
}

.container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    transform: translateY(-5%);
    margin: auto;
}

h3 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-top: 15px;
}

select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    background: #f7f9fc;
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#project-container,
#follow-up-container {
    margin-top: 20px;
}

#follow-up-container p {
    font-weight: 500;
    margin-bottom: 10px;
}

.yes-button {
    color: white;
    background-color: #d9534f;
}

.no-button {
    color: white;
    background-color: #0275d8;
}

#result {
    background-color: #d4d4d4;  /* Light grey or change as preferred */
    padding: 16px;
    margin-top: 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    border: 1px solid #c0d3f7;
    display: none; /* Will be shown dynamically when needed */
}


.intro-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9em;
    color: #222; /* A subtle gray color */
    font-weight: 500;
    line-height: 1.5;
    justify-content: left;
    text-align: left;
    margin-left: 20px; /* Adjust the left margin */
    margin-right: 20px; /* Adjust the right margin */
    margin-bottom: 20px;
}
.intro-text a {
    color: #0056b3; /* A friendly blue */
    font-weight: 700;  /* Makes the link bold */
    text-decoration: none;
}

.intro-text a:hover {
    color: #003d80; /* Darker on hover for feedback */
}
.additional-links {
    margin-top: 40px; /* Adds space above the paragraph */
}

.tool-container {
    background-color: #f5f5f5; /* Light grey */
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


