
.shop-detail-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

table.shop-info {
    font-size: 1rem;
}

table.shop-info th {
    border: solid 1px #000;
    background-color: #003893;
    color: #ffffff;
    width: 100px;
}

table.shop-info td {
    border: solid 1px #000;
    background-color: #ffffff;
    color: #000;
}

.back-link a {
    display: inline-block;
    background-color: #f0f8ff;
    border: 1px solid #013893;
    color: #003893;
    font-weight: bold;
    padding: 1rem 1rem;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    table.shop-info th,
    table.shop-info td {
        width: 100%;
        display: block;
        box-sizing: border-box;
    }
    .back-link a{
        margin: 1rem auto 0;
    }
    table.shop-info td {
        border-top: none;
        border-bottom: none;
    }
     table.shop-info tr:last-child td {
        border-bottom: 1px solid #000000;
    }
}