body {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

.top-container {
    position: relative;
    min-height: 100px;
    margin-bottom: 20px;
}

.logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px; /* Fixed container width */
    height: 200px; /* Fixed container height */
    overflow: hidden; /* Ensures the image doesn't spill out */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Maintains aspect ratio without distortion */
    display: block; /* Removes any unwanted spacing */
}

.header {
    margin-left: 220px;
    background-color: #eb2fa3;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    color: #ffffff;
}

.timer-container {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.timer-display {
    font-size: 48px;
    font-weight: bold;
    margin: 10px 0;
    font-family: monospace;
}

.timer-controls {
    margin: 10px 0;
}

.timer-button {
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

.start-button {
    background-color: #4CAF50;
    color: white;
}

.pause-button {
    background-color: #ff9800;
    color: white;
}

.reset-button {
    background-color: #f44336;
    color: white;
}

.section {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 5px;
}

.section-header {
    background-color: #478e93;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-content {
    padding: 20px;
    display: none;
}

.exercise {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.exercise:last-child {
    border-bottom: none;
}

.exercise-header {
    font-weight: bold;
    margin-bottom: 5px;
}

.duration-input {
    width: 60px;
    padding: 5px;
    margin-left: 10px;
}

.total-time {
    background-color: #e8cd23;
    padding: 10px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.toggle-icon {
    font-size: 20px;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .header {
        margin-left: 0;
        margin-top: 110px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
