#quote-container {
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 1.5em;
    width: auto;
    margin: 20px auto;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#quote-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

#quote-author {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    font-weight: 600;
}

#quote-separator {
    width: 50px; /* Set the width of the horizontal separator */
    border-top: 2px solid #0073aa; /* Color and thickness of the separator */
    margin: 10px auto; /* Center the separator and add vertical spacing */
}

#new-quote-button {
    background: #0073aa;
    font-weight: bold;
	font-size: 16px;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

#new-quote-button:active {
    transform: scale(0.95);
}

#new-quote-button:hover {
    background: #005177;
}
