/* 全体のスタイル */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* メインコンテンツ */
.container {
    flex: 1;
}

/* フォーム関連 */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
}

/* カード関連 */
.card {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #f8f9fa;
}

/* アラート関連 */
.alert {
    margin-bottom: 20px;
}

/* テーブル関連 */
.table-responsive {
    margin-bottom: 30px;
}

/* ステータスバッジ */
.status-badge {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}

.status-pending {
    background-color: #ffc107;
    color: #000;
}

.status-in-progress {
    background-color: #17a2b8;
    color: #fff;
}

.status-resolved {
    background-color: #28a745;
    color: #fff;
}

/* ナビゲーション */
.navbar {
    margin-bottom: 20px;
}

/* フッター */
footer {
    margin-top: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .form-container {
        padding: 10px;
    }
    
    .table-responsive {
        font-size: 0.9em;
    }
} 