/* Custom styles for Django Gemini Boost */

/* Body and layout */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Card enhancements */
.card {
    border-radius: 0.5rem;
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

/* Account cards */
.account-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Post thumbnails */
.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.post-thumbnail-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    color: #6c757d;
}

/* Status badges */
.badge-draft {
    background-color: #ffc107;
    color: #212529;
}

.badge-published {
    background-color: #198754;
}

/* Loading spinner */
.loading-spinner {
    display: none;
}

.loading .loading-spinner {
    display: inline-block;
}

.loading .btn-text {
    display: none;
}

/* Article list */
.article-item {
    border-left: 3px solid #0d6efd;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.article-item:hover {
    border-left-color: #0b5ed7;
    background-color: #f8f9fa;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
}
