/* Perusasetukset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Ilmoituslaatikko */
.notice-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

h1 {
    font-size: 1.5rem;
    color: #d9534f; /* Hillitty punainen/oranssi huomioväri */
    margin-bottom: 20px;
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 15px;
}

hr {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

/* Painikemainen Facebook-linkki */
.fb-link {
    display: inline-block;
    background-color: #1877f2; /* Facebookin sininen */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.2s ease;
    margin-top: 10px;
    word-break: break-all;
}

.fb-link:hover {
    background-color: #166fe5;
}
