/* @import 'tailwindcss'; */

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source "../**/*.blade.php";
@source "../**/*.js";
@source "../**/*.vue";

@theme {
    --font-sans: "Instrument Sans", ui-sans-serif, system-ui, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
}


/* Need to include app.css in layout */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #fff;
    margin-left: 10px;
    margin-bottom: -3px;
    border-radius: 5px;
    border: #ccc 1px solid;
    border-bottom: 1px white;
    background-color: #fff;
    z-index: 99;
}
.nav-item {
    margin-bottom: -3px;
}
#gpt-response ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#gpt-response li {
    margin-bottom: 0.5rem;
}

.nav-style-tab {
    margin-left: 10px;
    margin-bottom: -3px;
    border-bottom: 1px white;
    z-index: 99;
}

.male {
    background-color: #cce5ff;
} /* Light blue */
.male-self,
.male-parent,
.male-child {
    background-color: #8abff5;
}
.female {
    background-color: #f8d7da;
} /* Pink */
.female-self,
.female-parent,
.female-child {
    background-color: #f8acb3;
} /* Pink */
.relative {
    background-color: rgb(168, 142, 168);
} /* Pink */
.non-heir {
    background-color: #d0cca6;
} /* Light gray */
.couple-cell {
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin: 5px;
    text-align: center;
    width: auto;
}
.male {
    background-color: #cce5ff;
} /* Light blue */
.female {
    background-color: #f8d7da;
} /* Pink */
.relative {
    background-color: rgb(168, 142, 168);
} /* Pink */
.non-heir {
    background-color: #d0cca6;
} /* Light gray */
.husband-sibling {
    /* margin-left: 10px; */
    margin-right: 10px;
    height: 60%;
    max-height: 60px;
}
.family-cell {
    min-width: 100px;
    padding: 10px 8px;
    margin: 5px;
    min-height: 80px;
    border-radius: 4px;
    text-align: center;
}
.width-tenth {
    width: 10%;
}
.width-half {
    width: 49%;
}
.width-third {
    width: 33%;
}
.width-quarter {
    width: 24%;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
    float: left;
}
.text-right {
    text-align: right;
}
.float-right {
    text-align: right;
    float: right;
}
.tree-line {
    height: 30px;
    border-left: 2px solid #000;
    margin: auto;
}
.tree-branch {
    border-top: 2px solid #000;
    height: 2px;
    margin-top: 0;
}
.tree-connector {
    position: relative;
    height: 20px;
}
.tree-connector::before,
.tree-connector::after {
    content: "";
    position: absolute;
    top: 10px;
    border-top: 2px solid black;
    width: 50%;
}
.tree-connector::before {
    left: 0;
    border-left: 2px solid black;
    height: 10px;
}
.tree-connector::after {
    right: 0;
    border-right: 2px solid black;
    height: 10px;
}
.clickable {
    cursor: pointer;
    transition: transform 0.2s;
}
.clickable:hover {
    transform: scale(1.05);
}
.connector {
    width: 2px;
    height: 20px;
    background-color: #000;
    margin: 0 auto;
}

.arrow-down::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid black;
}

.family-box {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    background-color: #f8f9fa;
}

.line-row {
    height: 30px;
    position: relative;
}

.line-horizontal {
    border-top: 2px solid black;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
}

.line-vertical {
    width: 2px;
    background-color: black;
    height: 20px;
    margin: auto;
}

.family-level {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}
.arrow {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.arrow i {
    font-size: 1.5rem;
    color: gray;
}
.member {
    display: inline-block;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    min-width: 100px;
    margin: 0.5rem;
}
.form-label.register{
    width: 35%;
    float: left;
    font-weight: bold;
    text-align: left;
}

.form-control.register, select.register {
    width: 64%;
    float: left;
}
.logo-carousel {
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}
.text-purple {
    color: #6f42c1 !important;
}
.logo-item {
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1 !important;
}
img.approved {
    max-height: 80px; 
    opacity: 0.7;
}
.sortable {
    cursor: pointer;
    position: relative;
}
.sortable:hover {
    background-color: #f8f9fa;
}
.sortable::after {
    content: '⇅';
    position: absolute;
    right: 8px;
    opacity: 0.3;
}
.sorting-asc::after {
    content: '↑';
    opacity: 1;
}
.sorting-desc::after {
    content: '↓';
    opacity: 1;
}
.summary-title{
    font-size: 2rem;
}
footer > .footer-logo {
    margin-left: 0;
    margin-right: 0;
    min-width:250px;
}
footer > .col-1 {
    width:12%;
}

