/* estilos.css */

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.tracker-bar {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 15px;
    margin-bottom: 20px;
}

.tracker-input {
    border: none;
    font-size: 1.1rem;
    outline: none;
    box-shadow: none !important;
}

.timer-display {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    min-width: 120px;
    text-align: center;
}

.btn-start {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.btn-start:hover {
    transform: scale(1.05);
}

.btn-stop {
    background-color: #dc3545;
    color: white;
}

.btn-play {
    background-color: #0d6efd;
    color: white;
}

.task-list {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.task-group-header {
    background-color: #f1f3f5;
    padding: 10px 15px;
    font-weight: bold;
    border-bottom: 1px solid #e9ecef;
}

.task-item {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}

.editable-task:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
}

.task-item:hover {
    background-color: #f8f9fa;
}

.task-item:last-child {
    border-bottom: none;
}

.project-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.color-picker {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
