/*---------------------------*/
/*experiments----------------*/
/*---------------------------*/

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f8f9fa; /* Light gray background */
}

.experiments .protocol-button {
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0, 0.1);
  padding: 0.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
}
.experiments .protocols-rows .row:nth-of-type(odd) .protocol-button {
  background-color: #b85450;
}
.experiments .protocols-rows .row:nth-of-type(even) .protocol-button {
  background-color: white;
}

.protocol-icon-wrapper {
  width: 30px;
}
.protocol-icon {
  color: #6c757d;
}
.experiments .card-body {
  position: relative;
  border-radius: 0 0 4px 4px;
  padding: 2rem 2rem 1rem 3rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border: none;
}
.experiments .protocols-rows .row:nth-of-type(odd) .card-body {
  background-color: white;
}
.experiments .protocols-rows .row:nth-of-type(even) .card-body {
  background-color: white;
}

.protocol-button:focus {
    outline: none;
    box-shadow: none;
}

.experiments .card-body::before {
    content: '';
    position: absolute;
    width: 0.5rem;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 4px;
}
.experiments .protocols-rows .row:nth-of-type(odd) .card-body::before {
    background-color: #bd8679;
}
.experiments .protocols-rows .row:nth-of-type(even) .card-body::before {
    background-color: grey;
}

.experiments .protocol-table .protocol-general {
    padding: 1rem;
    font-weight:var(--fw-semi-bold)
}
.experiments .protocol-table .cell-general {
    padding: 1rem;
    vertical-align: middle;
}
.experiments .table-striped tbody tr:nth-of-type(odd) {
    background-color: #bd8679;
}
.experiments .sequence-content-wrapper table {
    word-break: break-all;
}
.experiments .go-to-results-wrapper {
    width: 10%;
    float: right;
    margin-left: 1.5rem;
    border-radius: 13px;
}

.experiments .protocol-subgroup {
    width: 100%;
}

.experiments .protocols-rows {
    width: 100%;
}

.experiments .protocols-rows .row {
    width: 100%;
    margin: 0;
}

/* カードボディも同様に調整 */
.experiments .card-body {
    width: 100%;
    box-sizing: border-box;
}

/* ボタンの幅を確実に100%にする */
.experiments .protocol-button {
    width: 100% !important;
    box-sizing: border-box;
}
/* Bootstrapのcol-*クラスの制限を上書き */
.experiments .col-lg-8,
.experiments .col-12 {
    max-width: 100% !important;
    width: 100% !important;
    flex: 0 0 100% !important;
}





