.driving-schedule-wrapper {
    max-width: 700px;
    margin: 30px auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

.driving-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.driving-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.driving-title h2 {
    margin: 0;
    font-size: 28px;
    color: #1d2e57;
    line-height: 1.2;
}

.driving-title span {
    display: block;
    font-size: 16px;
    color: #356dfa;
}

.driving-calendar {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #f2f2f2
}

.driving-calendar h3 {
    color: #1d2e57;
    margin-bottom: 10px;
    font-size: 22px;
}

.calendar-month {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.calendar-table th,
.calendar-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.calendar-table td {
    height: 40px;
    position: relative;
}

.calendar-table td.highlighted {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

.calendar-table td.highlighted .class-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.driving-time-address {
    background-color: #7cda24;
    color: white;
    padding: 20px;
    border-radius: 6px;
}

.driving-time-address p {
    margin: 8px 0;
    font-size: 16px;
}