
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f2f2f2;
}

.container {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.logo {
    display: block;
    margin: 0 auto 0px auto;
    max-height: 50px;
}

h1 {
    text-align: center;
    color: #111827;
    margin-top: 10px;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    font-size: 0.9em;
    color: #6b7280;
    margin-bottom: 20px;
}

.mode-select {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mode-select label {
    font-weight: 500;
}

.customize label {
    display: block;
    margin: 10px 0;
    color: #374151;
}

.generate-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #8EAFDA;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.generate-btn:hover {
    background-color: #7697c6;
}

.copy-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #92dba5;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.copy-btn:hover {
    background-color: #92bba5;
}

input[type="text"], input[type="number"] {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 18px;
    box-sizing: border-box;
}

.footer {
    margin-top: 30px;
    margin-bottom: -10px;
    padding: 10px;
    text-align: center;
    font-size: 9px;
    color: #777;
}

.footer a {
    color: #777;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus,
.footer a:active {
    color: #777;
    text-decoration: none;
}

.result-wrapper {
    margin-top: 20px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://justinverstijnen.nl/wp-content/uploads/2026/01/Tool_Background_Blurred.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.69;
    z-index: -1;
}

body {
    position: relative;
    min-height: 100vh;
}

.container {
    background: rgba(255, 255, 255, 0.85);
}
