body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #fff0f5;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.todo-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(255, 182, 193, 0.4);
    width: 400px;
    border: 3px solid #ffb6c1;
}

h1 {
    text-align: center;
    color: #ff69b4;
    font-size: 28px;
}

.input-area {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

input, select, button {
    padding: 12px;
    border: 2px solid #ffe4e1;
    border-radius: 16px;
    background: #fffafa;
    color: #555;
    font-family: inherit;
}

input:focus, select:focus {
    outline: none;
    border-color: #ffb6c1;
}

input { flex: 2; }
select { flex: 1; }

button {
    background-color: #ffb6c1;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border: none;
    transition: transform 0.1s ease, background-color 0.2s ease;
}

button:hover {
    background-color: #ff91a4;
    transform: scale(1.05);
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 14px;
    background: #fffaf0;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.high { border-left: 8px solid #ff7f50; }
.medium { border-left: 8px solid #ffe4b5; }
.low { border-left: 8px solid #b0e0e6; }

.completed {
    text-decoration: line-through;
    opacity: 0.4;
    background: #eef;
}

.delete-btn {
    background: none;
    border: none;
    color: #ffb6c1;
    font-size: 22px;
    cursor: pointer;
}

.delete-btn:hover {
    color: #ff69b4;
    transform: none; 
}

#counter {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 20px;
}

.timer-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px dashed #ffb6c1;
    text-align: center;
}

#timerDisplay {
    font-size: 42px;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 10px;
    font-family: monospace;
    text-align: center;
}

.timer-controls, .music-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.timer-section button {
    background-color: #ffb6c1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
}

.timer-section button:hover {
    background-color: #ff91a4;
}

#musicToggleBtn {
    width: 100%;
    background-color: #ffe4e1;
    color: #ff69b4;
    border: 1px solid #ffb6c1;
}

#musicToggleBtn:hover {
    background-color: #ffb6c1;
    color: white;
}

#pomotitle {
    font-size: 24px;
    text-align: center;
    color: #ff69b4;
    margin-top: 20px;
}

.video-wrapper {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

#ytPlayer {
    border-radius: 8px;
    border: 2px solid #ffb6c1;
    width: 200px;
    height: 120px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.music-controls {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

#musicEmbed {
    width: 100%;
    height: 180px;
    border: 2px solid #ffb6c1;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(255, 182, 193, 0.2);
}

.playlist-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.tab-btn {
    background-color: #fff5f6;
    color: #ff69b4;
    border: 1px solid #ffb6c1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.tab-btn:hover {
    background-color: #ffe4e1;
}

.tab-btn.active {
    background-color: #ffb6c1;
    color: white;
}
