@font-face {
    font-family: "HurmeGeometricSans3";
    src: url("../fonts/HurmeGeometricSans3 Bold.otf") format("opentype");
}

body {
    height: -webkit-fill-available;
    font-family: "Helvetica Neue", Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,"HurmeGeometricSans3",sans-serif;
}


/* =======================
    ヘッダー
======================= */
header {
    background-color: #000;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 2px solid #444;
}

    header img {
        height: 30px;
    }

    header .system-title {
        font-size: 1.8rem;
        margin-left: 20px;
        margin-bottom: 0;
    }

    header .user-info {
        margin-left: auto;
        text-align: right;
    }

        header .user-info p {
            margin: 0;
            font-size: 0.9rem;
        }

/* =======================
    ナビゲーションバー
======================= */
nav.navbar {
    background-color: #2a2a2a;
    border-top: 1px solid #464646;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.navbar-nav .nav-link {
    color: #ddd !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s ease;
    font-size: 1rem;
}

    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff !important;
        border-radius: 4px;
    }

    .navbar-nav .nav-link.active {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff !important;
        border-radius: 4px;
    }

/**画面TOPへ移動ボタン*/
.btn-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    cursor: pointer;
    transition: .3s;
    z-index: 1048;
}


/**ローディングスタイル*/
.c-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    margin-top: 10px;
    color: #fff;
    font-size: 1.2em;
}

/**InputGroupスタイル*/
.input-group-text-sm {
    width: 8em; /* 小さい幅 */
}

.input-group-text-normal {
    width: 12em; /* 通常の幅 */
}

.input-group-text-lg {
    width: 18em; /* 大きい幅 */
}

/* カスタムステータスラベル */
.status-label {
    background-color: #212529;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 600;
    display: inline-block;
    font-size: 0.875rem;
}

/* カスタム提案資料名ラベル */
.sample-label {
    background-color: #212529;
    color: #89d4f4;
    border: 2px solid #89d4f4;
    padding: 0.35rem 0.75rem;
    border-radius: 0.25rem;
    font-weight: 600;
    display: inline-block;
    font-size: 0.875rem;
}

.select-disabled {
    opacity: 0.6;
    pointer-events: none;
}

/*ブラウザの自動目アイコンを無効化*/
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}
