body {
    background-color: #f8f9fa;
}

body>.container {
    max-width: 900px;
}

h1 {
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

h3 {
    font-weight: bold;
}

.card {
    border-radius: 12px;
    overflow: hidden;
}

.card-title {
    margin-bottom: 20px;
}

table {
    border-collapse: separate;
    border-spacing: 0 10px;
}

table th {
    text-align: center;
}

table td {
    text-align: center;
    vertical-align: middle;
}

button {
    transition: all 0.3s ease;
}

button:hover {
    transform: scale(1.05);
}

button.handle {
    margin: 0 0 0 10px;
    cursor: move;
}

tbody, td, tfoot, th, thead, tr {
    border-style: none;
}

#schedule-table-body select {
    min-width: 110px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media only screen and (max-width: 450px) {
    button.handle {
        margin: 10px 0 0 0;
        cursor: move;
    }
}