body {
    background-color: #F7ECDE;
    font-family: "PT Sans Caption", sans-serif;
}

h1 {
    font-size: 50px;
    font-weight: 500;
    font-family: "Pacifico", cursive;
    line-height: 60px;
    color: #352e28;
}

h1::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    bottom: 10px;
    background-color: #fec260;
    z-index: -1;
    transition: all 0.3s;
}

h1:hover::before {
    height: 50%;
}

.content {
    border-width: 2px 0 2px 0;
    border-color: black;
    border-style: dotted;
}

h2 {
    font-size: 25px;
    font-weight: 500;
    font-family: "Righteous", sans-serif;
    line-height: 30px;
    background-image: linear-gradient(to right, #3ca55c, #b5ac49);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-control:focus {
    border-color: #d99c39;
    box-shadow: 0 0 0 0.25rem #fec26055;
}

.btn-submit,
.btn-modify {
    background-color: #d1512d;
    transition: 0.3s;
}

.btn-submit:hover,
.btn-submit:focus-visible,
.btn-modify:hover,
.btn-modify:focus-visible {
    background-color: #bb4120;
}

.btn-visit {
    background-color: #9eb23b;
    transition: 0.3s;
}

.btn-visit:hover,
.btn-visit:focus-visible {
    background-color: #8a9e23;
}

.btn-edit {
    background-color: #00A6F4;
    transition: 0.3s;
}

.btn-edit:hover,
.btn-edit:focus-visible {
    background-color: #0084D1;
}

.btn-delete {
    background-color: #eb1d36;
    transition: 0.3s;
}

.btn-delete:hover,
.btn-delete:focus-visible {
    background-color: #d30820;
}

@media (max-width: 768px) {
    .table-responsive-custom thead {
        display: none;
    }

    .table-responsive-custom,
    .table-responsive-custom tbody,
    .table-responsive-custom tr,
    .table-responsive-custom td {
        display: block;
        width: 100%;
    }

    .table-responsive-custom tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 8px;
        background-color: #f9f9f9;
    }

    .table-responsive-custom td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .table-responsive-custom td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: bold;
        text-align: left;
    }
}
