/* styles.css */

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Heading */
h1 {
    text-align: center;
    color: #2c3e50;
    margin-top: 20px;
}

/* Section Headers */
h2,
h3 {
    color: #2c3e50;
}

/* Buttons Styling */
button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #2980b9;
}

/* Specific Button Styling */
#downloadBtn {
    background-color: #27ae60;
}

#downloadBtn:hover {
    background-color: #1e8449;
}

/* Input Date Styling */
input[type="date"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

/* Container for Date Input and Buttons */
div {
    text-align: center;
    margin: 20px;
}

/* Google Authentification Section */
#google {
    text-align: center;
    margin: 20px;
}

/* Explanation Text */
#explanation {
    text-align: center;
    margin: 20px;
    font-size: 1.1em;
    color: #555;
}

/* Calendar and Browser Sections */
#calendar,
#browser {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#calendar h2,
#browser h2 {
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

#calendar-content,
#history-content {
    white-space: pre-wrap;
    word-wrap: break-word;
}