/* General body styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 1rem;
}

/* Card container styling */
.card {
    background-color: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 32rem;
    width: 100%;
    text-align: center;
    border: 1px solid #e5e7eb;
}

/* Title styling */
.title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* Message display area styling */
.message-box {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease-in-out;
}

/* Initial message styling */
.initial-message {
    font-size: 1.25rem;
    font-style: italic;
    color: #6b7280;
}

/* Generated message styling */
.message-text {
    font-size: 1.5rem;
    color: #1f2937;
    font-weight: 500;
    line-height: 1.5;
}

/* Button styling */
.generate-button {
    background-color: #2563eb;
    color: white;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}

.generate-button:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.generate-button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}