body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    color: #333;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table, th, td {
    border: 1px solid #ddd;
}

th {
    background-color: #f4f4f4;
    font-weight: bold;
}

th, td {
    padding: 10px;
    text-align: left;
}

td[contenteditable] {
    background-color: #fdfdfd;
    border: 1px solid #ddd;
}

td[contenteditable]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input[type="datetime-local"] {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

input[type="datetime-local"]:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

button {
    padding: 8px 12px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

button.delete {
    background-color: #dc3545;
}

button.delete:hover {
    background-color: #c82333;
}

button:hover {
    background-color: #0056b3;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#csvExample {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fdfdfd;
    border-radius: 4px;
}

.remaining-time {
    font-size: 0.9em;
    color: #777;
    margin-left: 10px;
}

/* Common styles for fixed corner icons */
.schedule-link {
    position: fixed;
    top: 10px;
    right: 10px;
    text-decoration: none;
    font-size: 1.5em; /* 50% larger */
    color: #888;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.schedule-link {
    right: 50px; /* Position to the left of the edit link */
}

.schedule-link:hover {
    filter: grayscale(0%);
    color: #ff5722;
    transform: scale(1.2); /* Slight zoom effect on hover */
}
