/* Input containers, buttons, and form elements */
.second-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #eee;
}

.second-container input[type="text"] {
    width: 100%;
    max-width: 600px;
    padding: 10px 10px 10px 40px;
    border-radius: 10px;
    border: 1px solid #ccc;
    border-style: groove;
    outline: none;
}

.input-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
}

.add-task-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

.reminder-icon {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #070707;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
    border-radius: 50%;
    z-index: 10;
}

.reminder-icon:hover {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-50%) scale(1.2);
}

.reminder-icon.active {
    color: #ffc107;
    background-color: rgba(255, 193, 7, 0.2);
}

.reminder-picker {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 12px;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
    background: #ffffff;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
    min-width: 200px;
}

.reminder-picker:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 2px 12px rgba(255, 193, 7, 0.2);
}

.clear-completed-btn {
    margin-bottom: 20px;
    padding: 12px 24px;
    min-width: 10px;
    background: linear-gradient(to right, #6986bd, #708ece);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 60;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(17, 17, 17, 0.3);
}

.clear-completed-btn:hover {
    border-radius: 80px;
    transform: scale(1.02);
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}