.astrolotto-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}

.astrolotto-form h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #ff6600; /* matching your orange theme */
    text-align: center;
}

.astrolotto-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #333;
}

.astrolotto-form input[type="text"],
.astrolotto-form input[type="date"],
.astrolotto-form input[type="time"] {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.astrolotto-form input[type="text"]:focus,
.astrolotto-form input[type="date"]:focus,
.astrolotto-form input[type="time"]:focus {
    border-color: #ff6600;
    outline: none;
}

.astrolotto-form button[type="submit"] {
    width: 100%;
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 0;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.astrolotto-form button[type="submit"]:hover {
    background-color: #e65500;
}

.result-message {
    margin-top: 15px;
    font-size: 1.1em;
    color: #333;
    text-align: center;
    min-height: 1.4em;
}
