body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    margin: 0;
    padding: 0;
}

.form-container {
    background: white;
    padding: 20px;
    max-width: 400px;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.form-container input, .form-container textarea, .form-container select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.form-container button {
    background: #ff6f61;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.form-container button:hover {
    background: #ff3b2e;
}

.view-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
}

.message-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.6);
    max-width: 90vw;
    width: 100%;
    border: 4px solid #ff6f61;
    color: #333;
    font-size: 1.7em;
    font-weight: 600;
    text-align: center;
}

.message-box h1 {
    margin-top: 0;
    color: #ff6f61;
}

.message-box p {
    font-size: 1.5em;
    color: #333;
}

.bold p {
    font-weight: bold;
}

.dark {
    background: #222 !important;
}

.dark .message-box {
    background: rgba(34, 34, 34, 0.95);
    color: white;
    border: 4px solid #ff6f61;
}

.dark .message-box p {
    color: #f0f0f0;
}
.views-count {
    margin-top: 20px;
    font-size: 0.8em;
    color: #666;
}
