.ai-fortune-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #fff;
}

.ai-fortune-field {
    margin-bottom: 15px;
}

.ai-fortune-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ai-fortune-field input[type="text"],
.ai-fortune-field input[type="date"],
.ai-fortune-field input[type="time"],
.ai-fortune-field input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.ai-fortune-date-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.ai-fortune-input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ai-fortune-input-wrapper input {
    text-align: center;
    width: 80px; /* specific width for inputs */
}

.ai-fortune-input-addon {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
}

.ai-fortune-radio-group label {
    display: inline-block;
    margin-right: 15px;
    font-weight: normal;
}

.ai-fortune-submit button, #ai-fortune-reset-btn {
    width: 100%;
    padding: 10px;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.ai-fortune-submit button:hover, #ai-fortune-reset-btn:hover {
    background-color: #5b4cc4;
}

.ai-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#ai-fortune-result-content {
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
}
