body {
    font-family:
        Inter,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        "Helvetica Neue",
        Arial;
    background: #f6f7fb;
    margin: 0;
    padding: 24px;
    display: flex;
    justify-content: center;
}
.container {
    max-width: 90%;
    width: 100%;
    margin: 20px 0;
    background: #fff;
    border-radius: 3px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(10, 20, 40, 0.06);
}
h1 {
    margin: 0 0 14px 0;
    color: #00b894;
    font-size: 22px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 14px;
    align-items: center;
}
.form-grid .full {
    grid-column: 1/-1;
}
input[type="date"],
input[type="text"],
input[type="number"] {
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #d6dce6;
    font-size: 14px;
    width: 95%;
}
button {
    padding: 9px 12px;
    border-radius: 8px;
    border: 0;
    background: #00b894;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.suggestions {
    position: relative;
}
.suggestion-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 36px;
    background: #fff;
    border: 1px solid #d6dce6;
    border-radius: 8px;
    max-height: 220px;
    overflow: auto;
    z-index: 50;
}
.suggestion-item {
    padding: 8px 10px;
    cursor: pointer;
}
.suggestion-item:hover {
    background: #f0f6ff;
}
.table-wrap {
    overflow: auto;
    margin-top: 12px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
thead th {
    background: #f4f6f9;
    padding: 10px;
    border: 1px solid #e6e9ef;
    text-align: left;
}
tbody td {
    padding: 10px;
    border: 1px solid #eef0f5;
}
.summary-row td {
    background: #f8fbfb;
    font-weight: 700;
}
.nested-row td {
    background: #ffffff;
    font-size: 13px;
    color: #1f2937;
}
.nested-row .small {
    font-size: 13px;
    color: #475569;
}
.actions button {
    background: #ef4444;
}

label {
    display: block;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
    font-size: 14px;
}

@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    thead th,
    tbody td {
        font-size: 13px;
    }
}

/* Floating Menu Styles */
.floating-menu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.menu-toggle {
    background-color: #007bff;
    color: #fff;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: none;
    flex-direction: column;
    align-items: flex-end;
}

.menu-items li {
    margin: 5px 0;
}

.menu-items a {
    background-color: #007bff;
    color: #fff;
    padding: 10px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: background 0.3s ease;
}

.menu-items a:hover {
    background-color: #0056b3;
}

/* Show menu when active */
.floating-menu.active .menu-items {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    .menu-items a {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/*Radio*/

.bo-options {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.bo-options label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.bo-options input[type="radio"] {
    accent-color: #007bff;
    transform: scale(1.1);
    margin-right: 4px;
}
