.citation-generator-container {
    max-width: 700px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f4f7fa;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.citation-generator-container h3 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

label {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    color: #555;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

input:focus, select:focus {
    border-color: #1a73e8;
}

.generate-btn {
    width: 100%;
    padding: 14px;
    background-color: #1a73e8;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.generate-btn:hover {
    background-color: #0d47a1;
}

#citation-result {
    margin-top: 30px;
    padding: 20px;
    background-color: #e9f7ff;
    border-radius: 6px;
    border: 1px solid #b3e5fc;
}
