/* 全局樣式 */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 確保主要內容區域可以撐開頁面 */
.container {
    flex: 1;
}

/* 狀態標籤樣式 */
.status-badge {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.status-in-progress {
    background-color: #ffc107;
    color: #000;
}

.status-answered {
    background-color: #198754;
    color: #fff;
}

/* 狀態切換按鈕組樣式 */
.status-toggle .btn-group {
    transition: opacity 0.3s ease;
}

.status-toggle .btn {
    transition: all 0.3s ease;
}

.status-toggle .btn-warning,
.status-toggle .btn-success {
    font-weight: 600;
}

.status-toggle .btn-outline-warning:hover {
    color: #000;
}

.status-toggle .btn-outline-success:hover {
    color: #fff;
}

/* Toast 通知樣式 */
.toast {
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast.show {
    opacity: 1;
}

.toast-body {
    padding: 0.75rem 1.25rem;
}

/* 禱告卡片樣式 */
.prayer-card {
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.prayer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 表單樣式 */
.form-label {
    font-weight: 500;
}

textarea.form-control {
    min-height: 120px;
}

/* 統計頁面樣式 */
.stats-card {
    border-radius: 0.5rem;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stats-card .card-body {
    padding: 1.5rem;
}

.stats-number {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
}

/* 回應式調整 */
@media (max-width: 768px) {
    .stats-number {
        font-size: 1.5rem;
    }
    
    .prayer-card {
        margin-bottom: 1rem;
    }
}

/* 按鈕風格 */
.btn-outline-primary:hover {
    color: #fff;
}

/* 提示訊息樣式 */
.alert {
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* 頁尾樣式 */
.footer {
    margin-top: auto;
    background-color: #f8f9fa;
    padding: 1rem 0;
}

/* 導航選單額外樣式 */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link i {
    margin-right: 0.25rem;
}