/* 有給管理システム - スタイルシート */

body {
    background-color: #f8f9fa;
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

/* ページヘッダー */
.page-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dee2e6;
}
.page-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* カード */
.card {
    border: none;
    border-radius: 0.5rem;
}
.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

/* テーブル */
.table th {
    white-space: nowrap;
    font-weight: 600;
}
.table td {
    vertical-align: middle;
}

/* 有給残日数バッジ */
.badge-days {
    font-size: 1rem;
    min-width: 3rem;
}

/* 残日数警告色 */
.days-low    { color: #dc3545; font-weight: 700; }
.days-medium { color: #fd7e14; font-weight: 600; }
.days-ok     { color: #198754; }

/* インポートエリア */
.import-area {
    border: 2px dashed #6c757d;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s, background-color 0.2s;
}
.import-area:hover {
    border-color: #0d6efd;
    background-color: #f0f4ff;
}

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

/* ナビゲーション アクティブ */
.navbar-nav .nav-link.active {
    font-weight: 600;
    background-color: rgba(255,255,255,0.15);
    border-radius: 0.25rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-header h1 { font-size: 1.25rem; }
    .table-responsive { font-size: 0.875rem; }
}