/* estilos.css */

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

#Logotipo{
    max-height: 40px;
}
#logotipo-login{
    max-height: 60px;
}
.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;
}
#task-description {
    min-width: 220px;
}

.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%;
    z-index: 1000;
    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;
}
#projectDropdownBtn{
    max-width: 200px;
}
#projectDropdownDiv{
    width: 300px; max-height: 400px;
}
#project-list-container {
    max-height: 300px;
}
@media (max-width:768px) {
    .tracker-bar {
        padding: 0px;
    }
    #task-description {
        min-width: 100px;
    }
    .task-item {
        padding: 5px;
    }
    .tracker-input {
       padding: .375rem .375rem;
    }
    #projectDropdownBtn{
        padding: .375rem .375rem;
    }
    #projectDropdownDiv{
        width: 250px; max-height: 400px;
    }
}