:root {
    --primary: #ed6c00;
    --primary-hover: #d45f00;
    --bg: #f8f9fa;
    --card: #ffffff;
    --border: #e0e0e0;
    --text: #333333;
}


body {
    font-family: "Noto Sans JP", sans-serif;
    background: #f8f9fb;
    margin: 0;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.page-title {
    color: #ed6c00;
    margin-bottom: 10px;
}

.user-info {
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stats-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stat-link {
    text-decoration: none;
    color: inherit;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    flex: 1;
    min-width: 180px;
    border-top: 4px solid #ed6c00;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.stat-title {
    font-size: 14px;
    color: #666;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #ed6c00;
    margin-top: 10px;
}

.logout-btn {
    background: #ed6c00;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

.logout-btn:hover {
    opacity: 0.9;
}

.navbar {
    background: white;
    border-bottom: 3px solid var(--primary);
    padding: 15px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

    margin-bottom: 30px;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}

.navbar-links {
    display: flex;
    gap: 25px;
}

.navbar-links a {
    text-decoration: none;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: 0.2s;

    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.navbar-links a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.form-group {
    margin-bottom: 18px;
}
.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.action-btn,
.action-btn-secondary {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.2s;
}

.action-btn {
    background: var(--primary);
    color: white;
}

.action-btn:hover {
    background: var(--primary-hover);
}

.action-btn-secondary {
    background: white;
    border: 1px solid var(--border);
    color: var(--text);
}

.action-btn-secondary:hover {
    background: #f3f3f3;
}

.report-block {
    margin-bottom: 20px;
}

.report-question {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.report-answer {
    background: #f8f9fb;
    padding: 12px;
    border-radius: 8px;
    line-height: 1.6;
}

.employee-table {
    width: 100%;
    border-collapse: collapse;
}

.employee-table th {
    background: #f4f4f4;
    text-align: left;
}

.employee-table th,
.employee-table td {
    padding: 12px;
    border: 1px solid var(--border);
}

.interview-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin: 0 auto 25px auto;
    max-width: 1000px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.interview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 15px;
    margin-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.interview-name {
    font-size: 22px;
    font-weight: 600;
}

.question-block {
    margin-bottom: 20px;
}

.question-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.answer-area {
    min-height: 100px;
}

.save-row {
    text-align: right;
    margin-top: 25px;
}

.employee-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.employee-link:hover {
    text-decoration: underline;
}

.status-scheduled {
    font-weight: bold;
    color: #f57c00;
}

.status-completed {
    font-weight: bold;
    color: #4caf50;
}

.team-dashboard-grid {

    display:grid;

    grid-template-columns:
            repeat(
                    auto-fit,
                    minmax(500px, 1fr)
            );

    gap:20px;
}

.team-dashboard-card {

    background: white;

    border-radius: 12px;

    padding: 20px;

    box-shadow:
            0 2px 8px rgba(0,0,0,0.08);
}

.team-dashboard-card h3 {

    margin-top: 0;
    margin-bottom: 15px;

    text-align: center;
}

.team-stat-row {

    display: flex;

    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid #eee;
}

.team-stat-total {

    margin-top: 15px;

    font-weight: bold;

    text-align: center;
}

    .team-dashboard-grid {

        display:grid;

        grid-template-columns:
        repeat(auto-fill, minmax(450px, 1fr));

        gap:20px;
    }

    .team-dashboard-card {

        min-height:140px;
        padding: 15px 20px;
    }

    .team-dashboard-card button {

        margin-right:8px;
        margin-bottom:8px;
    }

.toggle-btn.active {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.toggle-btn {
    transition: all 0.1s ease;
}

.success-banner {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #81c784;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.error-banner {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.admin-nav-grid {

    display: grid;

    grid-template-columns:
            repeat(
                    auto-fit,
                    minmax(280px, 1fr)
            );

    gap: 20px;

    margin-bottom: 30px;
}

.admin-nav-card {

    background: white;

    border-radius: 12px;

    padding: 24px;

    text-decoration: none;

    color: var(--text);

    border-top: 4px solid var(--primary);

    box-shadow:
            0 2px 8px rgba(0,0,0,0.05);

    transition: 0.2s;
}

.admin-nav-card:hover {

    transform: translateY(-3px);

    box-shadow:
            0 6px 18px rgba(0,0,0,0.10);
}

.admin-nav-card h3 {

    margin-top: 0;
    margin-bottom: 8px;

    color: var(--primary);
}
.admin-nav-card p {

    margin: 0;

    color: #666;

    font-size: 14px;
}

.admin-content {

    max-width: 1200px;

    margin: 0 auto;
}

.team-dashboard-card {
    overflow-wrap: break-word;
}

.card-created {

    display:inline-block;

    width:10px;
    height:10px;

    border-radius:50%;

    background:var(--primary);

    margin-right:8px;

    vertical-align:middle;
}

.card-not-created {

    display:inline-block;

    width:10px;
    height:10px;

    border-radius:50%;

    border:2px solid var(--primary);

    margin-right:8px;

    vertical-align:middle;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-logout-btn {

    background: var(--primary);
    color: white;

    border: none;
    border-radius: 6px;

    padding: 8px 14px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.2s;
}

.navbar-logout-btn:hover {

    background: #e06b00;

}

.error-banner {

    background: #f8d7da;
    color: #842029;

    padding: 12px;
    margin-bottom: 20px;

    border-radius: 8px;
}

.success-banner {

    background: #d1e7dd;
    color: #0f5132;

    padding: 12px;
    margin-bottom: 20px;

    border-radius: 8px;
}