body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    margin-top: 20px;
}

li {
    color: #000; /* Default color for the log text */
    margin: 5px 0; /* Space between each log entry */
    font-family: 'Arial', sans-serif;
}

.time {
    color: #999; /* Light grey color */
    font-weight: bold;
}

.text {
    color: #000; /* White text */
    font-size: 14px;
}

.url {
    color: #00f; /* Blue for links */
    text-decoration: underline;
    cursor: pointer;
}

.url:hover {
    color: #ff9900; /* Orange highlight on hover */
}

#timer-display {
    margin: 20px;
}

/* Modal and FAQ Modal */
#modal, #faq-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

/* Center the Modal Content */
.modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
    margin: 0;
}

/* Textarea */
textarea {
    width: 100%;
}

/* Button Styles */
button {
    margin-top: 10px;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Disabled state styles */
.disabled {
    background-color: #dfdfdf;  /* Make the background gray */
    cursor: not-allowed;  /* Change the cursor to indicate it's disabled */
    color: #999; /* Lighter text to indicate it's inactive */
}

select.disabled, button.disabled {
    pointer-events: none;  /* Prevent any interaction with the element */
    opacity: 0.6;  /* Slightly fade the element */
}

/* Remove bullet points */
#log-list {
    list-style: none;
    padding: 0;
}

/* Style each log entry as a thin horizontal card */
#log-list li {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 5px;
    margin: 2px 0;
    border-radius: 5px;
    text-align: left;
    font-size: 14px;
    display: inline-block;
    width: 80%;
}

/* FAQ Button Style */
#faq-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Donate Button Style */
#donate-container {
    margin: 20px auto;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.donate-form {
    display: inline-block;
}

.donate-button {
    display: inline-block;
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;  /* Remove underline from link */
}

.donate-button:hover {
    background-color: #e68a00;
}

/* FAQ Modal Style */
#faq-modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

#faq-modal p {
    text-align: left;
    margin-bottom: 10px;
}