﻿:root {
    --base-color: rgb(0, 50, 93);
    --base-color-hover: rgb(0, 70, 130);
    --base-color-active: rgb(0, 40, 75);
    --text-color: rgb(0, 50, 93);
    --border-color: rgb(0, 50, 93);
}

.custom-login-button {
    background-color: rgb(31, 93, 0);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    box-shadow: none;
    outline: none;
}

    .custom-login-button:hover,
    .custom-login-button:focus {
        background-color: rgb(31, 93, 0);
        color: white;
        text-decoration: none;
    }



/* 入力枠 */
input,
textarea,
select {
    border: 1px solid var(--border-color) !important;
    border-radius: 4px;
    padding: 8px;
    color: var(--base-color);
}

    input:focus,
    textarea:focus,
    select:focus {
        border-color: var(--base-color-hover);
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0, 50, 93, 0.25);
    }


/* 見出しやテキスト */
h1, h2, h3, h4, h5, h6, label {
    color: var(--base-color);
}


a {
    color: var(--base-color);
    text-decoration: none;
}

    a:hover {
        color: var(--base-color-hover);
        text-decoration: underline;
    }


.base-background-color {
    background-color: var(--base-color);
    color: white;
}


.base-Font-style {
    color: var(--base-color);
}


.base-border-color {
    border-color: var(--base-color) !important;
}


/*検索バー*/
.main {
    padding: 30px;
}

.search-bar {
    background-color: #002F61;
    padding: 10px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .search-bar input {
        border: none;
        border-radius: 20px;
        padding: 5px 15px;
        width: 100%;
    }

    .search-bar .btn {
        border-radius: 20px;
    }

/*リストのスタイル*/
.list-item {
    border-radius: 20px;
    padding: 10px 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* 半透明の黒色 */
    z-index: 999; /* 他の要素よりも手前に表示 */
    cursor: wait;
}