/* 主要樣式 */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}

/* 表格相關樣式 */
.table th {
    background-color: #f8f9fa;
}

.truncate {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 狀態徽章 */
.status-badge {
    display: inline-block;
    padding: 0.25em 0.6em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.status-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.status-failed {
    background-color: #f8d7da;
    color: #842029;
}

/* 日誌詳情 */
.log-detail-row {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.log-detail-label {
    font-weight: bold;
    color: #495057;
}

/* 測試郵件表單樣式 */
#test-email-form {
    max-width: 800px;
    margin: 0 auto;
}

#test-result {
    max-width: 800px;
    margin: 1rem auto;
    transition: all 0.3s ease;
}

.alert h5 {
    margin-bottom: 1rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }

    .btn-sm {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    #test-email-form {
        max-width: 100%;
    }
}
