/* ---------------------------------------------------------------------
画面：UKG51G00
画面名：共通	
---------------------------------------------------------------------
Maintenance:	
2024/07/03 … 初版	
--------------------------------------------------------------------- */

#header {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 0.5px;
    align-items: center;
    margin-bottom: 20px;
}

#msgArea {
    margin-top: 12px;
    height: 70px;
    overflow-y: scroll;
    border: 1px solid #000000;
    /* メッセージ追加時に表示するため、初期状態では非表示 */
    display: none;
}

.blockMsg {
    width: 275px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.errMsg {
    color: red;
}

button {
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    padding: 0.5rem 2rem;
    font-weight: bold;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    transition: 0.5s;
    margin: 0.5rem;
}
