/* Custom styles for the blog application */

/* Form styling */
.form-control, .form-select {
    border-radius: 0.375rem;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Priority colors */
.priority-high {
    color: #dc3545;
}

.priority-medium {
    color: #ffc107;
}

.priority-low {
    color: #28a745;
}

/* Mood badges */
.mood-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Textarea styling */
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Navigation improvements */
.navbar-brand {
    font-weight: 600;
}

.nav-link {
    font-weight: 500;
}

/* Button improvements */
.btn {
    border-radius: 0.375rem;
    font-weight: 500;
}

.btn-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Content styling */
.content {
    line-height: 1.6;
    font-size: 1.1rem;
}

.content p {
    margin-bottom: 1rem;
}

/* Alert improvements */
.alert {
    border-radius: 0.5rem;
    border: none;
}

/* Pagination improvements */
.pagination .page-link {
    border-radius: 0.375rem;
    margin: 0 2px;
}

/* Footer styling */
footer {
    margin-top: auto;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.1rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        border-radius: 0.375rem !important;
        margin-bottom: 0.25rem;
    }
} 