.angie-pomodoro-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background: #f0f7f4;
    border-radius: 20px;
    text-align: center;
    font-family: system-ui, sans-serif;
    color: #2c3e50;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.angie-pomodoro-timer-circle {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
}

.angie-pomodoro-timer-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 5;
}

.timer-progress {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: bold;
}

.angie-pomodoro-controls button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    background: #3b82f6;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.angie-pomodoro-controls button:hover {
    background: #2563eb;
}

.angie-pomodoro-tasks {
    margin-top: 20px;
    text-align: left;
}

#pomodoro-new-task {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    margin-bottom: 10px;
}

#pomodoro-task-list {
    list-style: none;
    padding: 0;
}

#pomodoro-task-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}