/*============================================================================================================*/
/*=======================================一覧画面,詳細画面スタイル==============================================*/
/*============================================================================================================*/


/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*||||||||||||||||||||||||||||||||||||||||||一覧画面|||||||||||||||||||||||||||||||||||||||||||||||||*/
/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/

/*====================検索系===========================*/
#suggestions {
    list-style: none;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    width: 100%;
    padding: 0;
}
#suggestList {
    background-color: white;
    color: black;
    padding: 8px;
    cursor: pointer;
    width: 100%;
}
#suggestList:hover {
    background: rgb(0, 78, 194);
    color: white;
}
#suggestions:empty{
    display: none;
}
.suggest{
    z-index: 10;
    display: block;
}
#suggestChild{
    display: flex;
    gap: 5px;
    justify-content: center;
}
#searchbox{
    width: 100%;
 }
 /*==============================================ボタン類============================= rgb(237, 250, 240);=============================*/
.action-btn{
    background:#e4e4e4;
    border-radius: 20px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translate(-120%);
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
#homeBtn{
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
#homeBtn:hover{
background-color: #bad5fc;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
#deleteBtn:hover{
    background-color: #ff5a5a;
}
#editBtn:hover{
    background-color: #f3fdc4;
}
#newBtn:hover{
    background-color: #defcd6;
}
#retainerBtn{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
#retainerBtn:hover{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #4d77b3;
}
/*===============================ヘッダーstyle=============================================*/
#mainHeader{
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgb(237, 250, 240);
    padding: 1px;
    box-shadow: 0 2px 4px rgb(237, 250, 240);
}
/*===================================チェックボックスstyle=========================================*/
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #4CAF50; /* 対応ブラウザなら色変更可能 */
  cursor: pointer;
}
/*===========================================画像style==============================================*/
.imageWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px; /* 必要に応じて */
}
.connectorImage{
    object-fit: contain;
    width: 100%;
    max-height: 180px;
}
/*===========================================リンクstyle==============================================*/
#linksTextarea{
    font-size: xx-small;
    border: none;
    width: 100%;
    max-height: 70px;
}
/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*||||||||||||||||||||||||||||||||||||||||詳細画面|||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*----------------------------------------詳細画像系*/
.showConnectorImage{
    background-color: rgb(142, 178, 233);
    object-fit: contain;
    width: 100%;
    max-height: 250px;
}
.shouImageWrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 1%;
  height: 250px;
}
#showConnectorImage{
    padding-top: 1%;
}
/*-----------------------------------詳細フォントサイズ*/
.noneStyle{
    font-size: medium;
}
.allStyle{
    font-size: medium;
}
/*---------------------------------詳細ボタン系*/
.showConneBtns{
    display: inline-block;
    background-color: #e0e0e0;
    border-radius: 15px;
}
#conneListBtn{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
#conneListBtn:hover{
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #adf1fd;
}
#conneHomeBtn{
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
#conneHomeBtn:hover{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: #bad5fc;
}
