/* styles.css for DONE Tracker App */

/* General Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    color: #212529;
}

h1 {
    font-size: 2.5rem;
    color: #004ea1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

p {
    color: #495057;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
}

.card h2 {
    margin-top: 0;
}

/* List Styling */
.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    border: none;
}

/* Button Styling */
button {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #c3e6cb;
}

button:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Alert Styling */
.alert {
    margin-top: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Form Styling */
form label {
    font-weight: bold;
}

form input, form select {
    font-size: 1rem;
    padding: 10px;
    border-radius: 5px;
}

form input:focus, form select:focus {
    border-color: #007bff;
    outline: none;
}

/* Trophy Icon */
.list-group-item .trophy {
    color: #ffc107;
    font-size: 1.25rem;
}

/* Avatar */
.avatar {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: white;
    font-weight: bold;
    margin: 2px;
}

.avatar.placeholder {
    background-color: #e0e0e0;
    color: #9e9e9e;
}

/* Calendar view */
.text-danger {
    font-weight: bold;
}
