/* データテーブルの背景色カスタマイズ */
.v-data-table tr:hover td {
    background-color: #b8b8b8;
}

/* Vuetify の data-table row に背景色をしっかり反映させる */
.v-data-table tbody tr.red.lighten-4 td {
    background-color: #ef9a9a !important;
    /* red lighten-4 */
}

.v-data-table tbody tr.yellow.lighten-4 td {
    background-color: #fff59d !important;
    /* yellow lighten-4 */
}

.v-data-table tbody tr.black--text.grey.darken-4 td {
    background-color: #212121 !important;
    /* grey darken-4 */
    color: #fff !important;
    /* 文字を白に */
}

/* wordpressサイトのカラー */
.bg-fixpark {
    background-color: #27343c !important;
}

.css-fontsize {
    font-size: 16px !important;
}

.css-text-white {
    color: white !important;
}

.css-text-fixpark {
    color: #27343c !important;
}

.css-text-dimgray {
    color: dimgray !important;
}

.css-bg-color {
    background-color: rgb(250, 250, 250) !important;
}

.css-bg-khaki-color {
    background-color: khaki !important;
}

.css-bg-beige-color {
    background-color: beige !important;
}

.css-position-r {
    position: relative;
}

/* 修理依頼フォームのアコーディオン余白削除 */
.v-expansion-panel-content__wrap {
    padding: 0;
}

.custom-class {
    white-space: normal!important;
    word-wrap: break-word!important;
  }
