body {
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.schedule-navigation {
	margin-left: 10%;
}
select{
	max-width: 50%;
	margin-right:100%;
	margin-bottom: 5px;
}
.schedule-navigation button,
.schedule-navigation input {
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
	transition: box-shadow 0.3s;
}
.schedule-navigation button{
	background-color: #D3D3D3;
}
.schedule-navigation input {
    width: 200px;
    text-align: center;
}

.schedule-navigation button:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.schedule-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: auto;
}

.schedule-table th,
.schedule-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: middle;
}

.schedule-table th {
    font-weight: bold;
    text-align: center;
    background-color: #f9f9f9;
}

.schedule-table td:last-child {
    text-align: center;
}

.schedule-table td {
    font-size: 14px;
    word-wrap: break-word;
}
.schedule-table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.schedule-table tr:hover {
    background-color: #e6e6e6;
}

.schedule-table span.delete-button {
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-weight: bold;
    text-align: center;
    width: 25px;
    height: 25px;
    line-height: 15px;
}

.schedule-table span.delete-button:hover {
    background-color: white;
	color:white;
    border-color: #999;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 40%;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.modal-content p {
    margin: 10px 0;
    line-height: 1.5;
}
.schedule-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.schedule-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 8px;
    position: relative;
}

.save-changes-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
}

.save-changes-btn:hover {
    background-color: #218838;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

select {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}
#dynamic-schedule-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 8px;
    position: relative;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
	transition: color 0.3s;
	background-color: white;
	border:none;
}

.close-modal-btn:hover {
    color: red;
    text-decoration: none;
    cursor: pointer;
}
.content-container-container{
	background-color: #fff;
    padding: 2%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    margin: auto;
    overflow: hidden;
}