body {
    background-color: #f4f4f4; /* 背景色 */
    font-family: Arial, sans-serif; /* フォントファミリー */
}

.container {
    max-width: 100%; /* コンテナの最大幅 */
    min-width: 100%; /* コンテナの最大幅 */
    margin: 20px auto; /* 上下のマージンと自動で中央寄せ */
    padding: 20px; /* パディング */
    background-color: white; /* 背景色 */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* 影をつける */
}

input[type="text"], .btn {
    min-width: '120px';
    width: '120px';
    margin-bottom: 10px; /* 下のマージン */
}

.navbar-brand, .navbar-brand:hover {
    background: #fff !important;
}

.navbar-logo {
    height: 40px;
    padding-bottom: 4px;
}

.btn-primary {
    background-color: #007BFF; /* ボタンの背景色 */
    border: none; /* 枠線なし */
    padding: 10px; /* パディング */
    color: white; /* 文字色 */
    cursor: pointer; /* カーソルをポインターに */
}

.alert {
    padding: 10px; /* パディング */
}

.card-body {
    padding: 10px;
}

.card-title {
    font-size: 1rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-outline-info, .btn-outline-danger {
    margin-left: 5px;
}

.spacer {
    margin-left: 4px;
}

.nav-tabs .nav-link.active {
    background-color: #16A085; /* FlatUI color */
    color: white; /* Text color for active tab */
}

.tab-content {
    border: 1px solid #DDD; /* Slight border for the content area */
    border-top: none; /* Remove border at the top to merge with the tab */
}

.readonly-value {
    color: #333 !important;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background-color: #3498db; /* アクティブ */
    color: white;
    border-radius: 20px;
    margin: 5px;
    height: 24px;
    cursor: pointer;
}

.tag.inactive {
    background-color: #95a5a6; /* 非アクティブ */
}

