/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
}

/* Header and Logo */
.header {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 50%;
    max-width: 350px; /* Limits max size on larger screens */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Main Content */
h1 {
    margin-top: 10px;
    font-size: 24px;
}

form {
    margin-top: 20px;
}

form input[type="email"] {
    padding: 10px;
    font-size: 16px;
    width: 80%;
    max-width: 400px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #1e1e1e;
}

form button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

hr {
    margin: 30px 0 30px 0;
    border-top: #101010 1px solid;
    border-bottom: #222 1px solid;
  }

/* Results */
ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

ul li {
    background-color: #1e1e1e;
    margin: 5px auto;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
}

/* Link for Navigation */
a {
    display: block;
    margin-top: 20px;
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .logo {
        width: 70%;
    }
}

/* Pwned Summary Row */
.pwnedSummaryRow {
    display: flex; /* Align items side by side */
    justify-content: space-between; /* Space between columns */
    align-items: center; /* Align vertically in the center */
    gap: 10px; /* Add a small gap between boxes */
    margin: 30px auto;
    max-width: 800px; /* Limit row width */
    flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
}

/* Each Column in the Row */
.col-sm-3 {
    flex: 1; /* Make each column take equal space */
    max-width: 200px; /* Limit maximum width for each box */
    background-color: #1e1e1e; /* Match your style */
    padding: 15px; /* Add padding inside each box */
    margin: 5px; /* Add slight margin for spacing */
    border-radius: 8px; /* Rounded corners */
    text-align: center; /* Center text inside each box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Pwn Count Text */
.pwnCount {
    display: block; /* Ensure the number appears on its own line */
    font-size: 1.8em; /* Larger font size for the number */
    font-weight: bold; /* Make it bold */
    margin-bottom: 5px; /* Add spacing below the number */
    color: #ffffff; /* Highlight with green */
}

/* Responsive Design */
@media (max-width: 600px) {
    .pwnedSummaryRow {
        flex-direction: column; /* Stack vertically on small screens */
    }

    .col-sm-3 {
        max-width: 100%; /* Use full width on smaller screens */
    }
}

.footer-container {
    background-color: #121212; /* Match your style */
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: #333;
    display: block;
    width: 100%;
    white-space: nowrap; /* Forces all text to stay in one line */
    overflow: hidden; /* Prevents accidental wrapping */
}

.footer-text {
    display: flex;
    justify-content: center; /*  Centers text horizontally */
    align-items: center;
    gap: 10px; /* Adds space between elements */
    flex-wrap: nowrap; /*  Prevents text from wrapping to the next line */
}

.footer-text a,
.footer-text span {
    display: inline-block; /* Ensures elements stay inline */
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.footer-text a:hover {
    color: #df99d9;
}


