/* _content/PeaceBrookingsCalendar/Components/Layout/MainLayout.razor.rz.scp.css */
/* Main Layout CSS */
*[b-87r0uxjxki] {
    box-sizing: border-box;
}

html[b-87r0uxjxki], body[b-87r0uxjxki] {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.support-survey-link[b-87r0uxjxki] {
    background-color: #ff9800;
    color: white; 
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    font-size: 1rem; 
    font-weight: bold;
    text-decoration: none;
    margin-left: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .support-survey-link:hover[b-87r0uxjxki] {
        background-color: #e68900;
        transform: scale(1.05);
        text-decoration: none;
    }

#blazor-error-ui[b-87r0uxjxki] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-87r0uxjxki] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Header Container */
.header-container[b-87r0uxjxki] {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #70146c;
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    flex-shrink: 0;
}

.header-content[b-87r0uxjxki] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.header-title[b-87r0uxjxki] {
    margin: 0;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    color: white;
    flex-grow: 1;
    font-family: Arial, Helvetica, sans-serif;
}

.login-button[b-87r0uxjxki] {
    background-color: white;
    color: #70146c;
    border: 1px solid #70146c;
    padding: 0.5rem 1rem;
    border-radius: 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .login-button:hover[b-87r0uxjxki] {
        background-color: #e8d048;
        color: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

.main-content[b-87r0uxjxki] {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    padding: 2rem;

}

    /* Background overlay */
    .main-content[b-87r0uxjxki]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/background.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: 0; /* Base layer */
    }


    .main-content > .content-wrapper[b-87r0uxjxki] {
        position: relative;
        z-index: 1; /* Bring content to front */
        width: 100%;
        height: 100%;
    }

.footer-container[b-87r0uxjxki] {
    text-align: center;
    padding: 1rem;
    background-color: #70146c;
    color: white;
    flex-shrink: 0;
}


.edit-parent-page[b-87r0uxjxki] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.displayParent-container[b-87r0uxjxki] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.edit-layout[b-87r0uxjxki] {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/AccountSettings.razor.rz.scp.css */
.form-container[b-ypjxc9bkb8] {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

.form-group[b-ypjxc9bkb8] {
    margin-bottom: 1rem;
}

    .form-group label[b-ypjxc9bkb8] {
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
    }

.form-control[b-ypjxc9bkb8] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-actions[b-ypjxc9bkb8] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.square-button[b-ypjxc9bkb8] {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 1px solid #ccc;
    cursor: pointer;
}

.save-button[b-ypjxc9bkb8] {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

.back-button[b-ypjxc9bkb8] {
    background-color: #e57373;
    color: white;
    border-color: #e57373;
}

.square-button:hover[b-ypjxc9bkb8] {
    opacity: 0.9;
}

.error-title[b-ypjxc9bkb8] {
    color: red;
    font-size: 1rem;
    margin-top: 1rem;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/AddAdminModal.razor.rz.scp.css */
/* Button styling */
.addStaff-button[b-mzm5b4dhs6] {
    margin-top: auto;
    margin-left: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .addStaff-button:hover[b-mzm5b4dhs6] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .addStaff-button i[b-mzm5b4dhs6] {
        font-size: 1rem;
    }

/* Modal overlay */
.modal-overlay[b-mzm5b4dhs6] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-mzm5b4dhs6] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-mzm5b4dhs6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-mzm5b4dhs6] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-mzm5b4dhs6] {
    margin-bottom: 1rem;
}

.modal-footer[b-mzm5b4dhs6] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-mzm5b4dhs6] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-mzm5b4dhs6] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-mzm5b4dhs6] {
        background-color: #70146c;
        color: white;
    }

/* Input field styling */
.input-field[b-mzm5b4dhs6] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/AddClassroomModal.razor.rz.scp.css */

/* Modal overlay */
.modal-overlay[b-5d0kcjbd3z] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-5d0kcjbd3z] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-5d0kcjbd3z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-5d0kcjbd3z] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-5d0kcjbd3z] {
    margin-bottom: 1rem;
}

.modal-footer[b-5d0kcjbd3z] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-5d0kcjbd3z] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-5d0kcjbd3z] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-5d0kcjbd3z] {
        background-color: #70146c;
        color: white;
    }

/* Input field styling */
.input-field[b-5d0kcjbd3z] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/AddParentModal.razor.rz.scp.css */
/* Button styling */
.addParent-button[b-pij0yhn4ib] {
    margin-top: auto;
    margin-left: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .addParent-button:hover[b-pij0yhn4ib] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .addParent-button i[b-pij0yhn4ib] {
        font-size: 1rem;
    }

/* Modal overlay */
.modal-overlay[b-pij0yhn4ib] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-pij0yhn4ib] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-pij0yhn4ib] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-pij0yhn4ib] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-pij0yhn4ib] {
    margin-bottom: 1rem;
}

.modal-footer[b-pij0yhn4ib] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-pij0yhn4ib] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-pij0yhn4ib] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-pij0yhn4ib] {
        background-color: #70146c;
        color: white;
    }

/* Input field styling */
.input-field[b-pij0yhn4ib] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/AddStaffModal.razor.rz.scp.css */
/* Button styling */
.addStaff-button[b-0z0904da9l] {
    margin-top: auto;
    margin-left: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .addStaff-button:hover[b-0z0904da9l] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .addStaff-button i[b-0z0904da9l] {
        font-size: 1rem;
    }

/* Modal overlay */
.modal-overlay[b-0z0904da9l] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-0z0904da9l] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-0z0904da9l] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-0z0904da9l] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-0z0904da9l] {
    margin-bottom: 1rem;
}

.modal-footer[b-0z0904da9l] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-0z0904da9l] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-0z0904da9l] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-0z0904da9l] {
        background-color: #70146c;
        color: white;
    }

/* Input field styling */
.input-field[b-0z0904da9l] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/BlockOutDateConfig.razor.rz.scp.css */
/* Blockout Config Page */
.blockout-config-page[b-51qelljewn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 2rem;
    min-height: 100vh;
}

.content-container[b-51qelljewn] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

/* Blockout List */
.blockout-list[b-51qelljewn] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* Blockout Square Styling */
.blockout-square[b-51qelljewn] {
    width: 200px;
    min-height: 150px;
    background-color: white;
    border: 2px solid #70146c;
    border-radius: 12px;
    padding: 1rem;
    position: relative;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

    .blockout-square h3[b-51qelljewn] {
        margin: 0 0 0.5rem 0;
        color: #70146c;
        font-size: 1.1rem;
    }

    .blockout-square p[b-51qelljewn] {
        margin: 0;
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
    }

/* Delete Button */
.delete-button[b-51qelljewn] {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

    .delete-button:hover[b-51qelljewn] {
        background-color: #f8d7da;
        color: #70146c;
    }

/* Event Form */
.event-form[b-51qelljewn] {
    flex: 1; /* Allow form to grow */
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
    padding: 1.5rem; /* Inner padding for spacing */
    max-width: 400px; /* Limit form width */
}

/* Form Title */
.form-title[b-51qelljewn] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #70146c; /* Purple title */
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif; /* Consistent font */
}

/* Form Group */
.form-group[b-51qelljewn] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Space between label and input */
}

/* Form Control */
.form-control[b-51qelljewn] {
    padding: 0.75rem;
    font-size: 1rem;
}

/* Square Button */
.square-button[b-51qelljewn] {
    background-color: #70146c; /* Purple color */
    color: white;
    border: none;
    border-radius: 12px; /* Sleeker rounded edges */
    width: 180px; /* Wider button for text */
    height: 50px;
    font-size: 1rem; /* Consistent font size */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

    .square-button:hover[b-51qelljewn] {
        background-color: #e8d048; /* Gold hover color */
        color: #70146c; /* Purple text */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Elevated shadow */
    }

/* Responsive Adjustments */
@media (max-width: 768px) {

    .square-button[b-51qelljewn] {
        width: 100%; /* Full-width button on smaller screens */
    }
}

/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/ClassroomConfig.razor.rz.scp.css */
/* Classroom Config Page */
.classroom-config-page[b-x5q1hwju37] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem; /* Space between sections */
    padding: 2rem;
    min-height: 100vh; /* Ensure page fills viewport */
}

/* Page Title */
.page-title[b-x5q1hwju37] {
    font-size: 2.5rem;
    font-weight: bold;
    color: #70146c; /* Purple title */
    margin: 0;
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif; /* Consistent font */
}

/* Classroom List Layout */
.classroom-list[b-x5q1hwju37] {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem; /* Adjust spacing for better layout */
    justify-content: center;
}

/* Classroom Square Styling */
.classroom-square[b-x5q1hwju37] {
    width: 140px; /* Increased size for better usability */
    height: 140px;
    background-color: white;
    border: 2px solid #70146c; /* Purple border */
    border-radius: 12px; /* Sleeker rounded edges */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    font-size: 1rem;
    color: #70146c;
    padding: 0.5rem; /* Inner padding for spacing */
}

/* Add Square Styling */
.add-square[b-x5q1hwju37] {
    background-color: #70146c; /* Purple background */
    color: white;
    cursor: pointer;
    font-size: 1.5rem; /* Larger "+" for emphasis */
    font-weight: bold;
}

    .add-square:hover[b-x5q1hwju37] {
        background-color: #e8d048; /* Gold hover */
        color: #70146c; /* Purple text */
    }

/* Edit Input */
.edit-input[b-x5q1hwju37] {
    width: 90%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded for modern look */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Inner shadow */
}

/* Button Styling */
.edit-button[b-x5q1hwju37],
.save-button[b-x5q1hwju37] {
    background-color: #70146c; /* Purple for consistency */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

    .edit-button:hover[b-x5q1hwju37],
    .save-button:hover[b-x5q1hwju37] {
        background-color: #e8d048; /* Gold hover */
        color: #70146c; /* Purple text */
    }

/* Delete Button */
.delete-button[b-x5q1hwju37] {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #dc3545; /* Red for delete */
    color: white;
    border-radius: 50%; /* Circular button */
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

    .delete-button:hover[b-x5q1hwju37] {
        background-color: #f8d7da; /* Light red on hover */
        color: #70146c; /* Purple text */
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .classroom-square[b-x5q1hwju37] {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }

    .add-square[b-x5q1hwju37] {
        font-size: 1.2rem;
    }

    .edit-input[b-x5q1hwju37] {
        font-size: 0.9rem;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/DailySheetExport.razor.rz.scp.css */
/* Daily Sheet Page */
.daily-sheet-page[b-hm92ohi1tn] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 1.5rem;
    gap: 1rem;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

/* Page Title */
.page-title[b-hm92ohi1tn] {
    font-size: 2rem;
    font-weight: 600;
    color: #70146c;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e8d048;
    width: 100%;
}

/* Controls Container */
.date-picker-container[b-hm92ohi1tn] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

/* Date Input */
.date-picker[b-hm92ohi1tn] {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

    .date-picker:focus[b-hm92ohi1tn] {
        border-color: #70146c;
        outline: none;
    }

/* Action Buttons */
.square-button[b-hm92ohi1tn] {
    background-color: #70146c;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .square-button:hover[b-hm92ohi1tn] {
        background-color: #5a1056;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

    .square-button:active[b-hm92ohi1tn] {
        transform: translateY(0);
    }

/* Spreadsheet Container */
.spreadsheet-container[b-hm92ohi1tn] {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: auto;
    width: 100%;
    margin-top: 1rem;
}

/* Spreadsheet Table */
.spreadsheet-table[b-hm92ohi1tn] {
    width: 100%;
    min-width: 800px;
    border-collapse: separate;
    border-spacing: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

    .spreadsheet-table th[b-hm92ohi1tn] {
        background-color: #70146c;
        color: white;
        padding: 1rem;
        position: sticky;
        top: 0;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

        .spreadsheet-table th:hover[b-hm92ohi1tn] {
            background-color: #5a1056;
        }

    .spreadsheet-table td[b-hm92ohi1tn] {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #eee;
    }

    .spreadsheet-table tr:hover td[b-hm92ohi1tn] {
        background-color: #f8f5ff;
    }

    .spreadsheet-table tr:last-child td[b-hm92ohi1tn] {
        border-bottom: none;
    }

    /* Column Widths */
    .spreadsheet-table th:nth-child(1)[b-hm92ohi1tn],
    .spreadsheet-table td:nth-child(1)[b-hm92ohi1tn] {
        width: 30%;
        min-width: 250px;
    }

    .spreadsheet-table th:nth-child(2)[b-hm92ohi1tn],
    .spreadsheet-table td:nth-child(2)[b-hm92ohi1tn],
    .spreadsheet-table th:nth-child(3)[b-hm92ohi1tn],
    .spreadsheet-table td:nth-child(3)[b-hm92ohi1tn] {
        width: 20%;
        min-width: 150px;
    }

    .spreadsheet-table th:nth-child(4)[b-hm92ohi1tn],
    .spreadsheet-table td:nth-child(4)[b-hm92ohi1tn] {
        width: 30%;
        min-width: 200px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .daily-sheet-page[b-hm92ohi1tn] {
        padding: 1rem;
        height: auto;
        min-height: 100vh;
    }

    .date-picker-container[b-hm92ohi1tn] {
        flex-direction: column;
    }

    .date-picker[b-hm92ohi1tn],
    .square-button[b-hm92ohi1tn] {
        width: 100%;
    }

    .spreadsheet-container[b-hm92ohi1tn] {
        overflow-x: auto;
    }

    .spreadsheet-table[b-hm92ohi1tn] {
        font-size: 0.9rem;
    }

        .spreadsheet-table th[b-hm92ohi1tn],
        .spreadsheet-table td[b-hm92ohi1tn] {
            padding: 0.75rem;
        }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/EditClassroomModal.razor.rz.scp.css */

/* Modal overlay */
.modal-overlay[b-wqbrzlpmx4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-wqbrzlpmx4] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-wqbrzlpmx4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-wqbrzlpmx4] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-wqbrzlpmx4] {
    margin-bottom: 1rem;
}

.modal-footer[b-wqbrzlpmx4] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-wqbrzlpmx4] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-wqbrzlpmx4] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-wqbrzlpmx4] {
        background-color: #70146c;
        color: white;
    }

/* Input field styling */
.input-field[b-wqbrzlpmx4] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/EditParent.razor.rz.scp.css */
/* Edit Parent Page CSS */
.edit-parent-page[b-nfyadq968b] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

.save-buttons-row[b-nfyadq968b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
}

/* Delete Button */
.delete-button[b-nfyadq968b] {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: #dc3545; /* Red for delete */
    color: white;
    border-radius: 50%; /* Circular button */
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

    .delete-button:hover[b-nfyadq968b] {
        background-color: #f8d7da; /* Light red on hover */
        color: #70146c; /* Purple text */
    }

.displayParent-container[b-nfyadq968b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1.5rem;
}

.search-panel[b-nfyadq968b] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.panel-header[b-nfyadq968b] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

    .panel-header h3[b-nfyadq968b] {
        margin: 0;
        font-size: 1.25rem;
        color: #2d3748;
    }

    .panel-header i[b-nfyadq968b] {
        color: #70146c;
        font-size: 1.2rem;
    }

.panel-content[b-nfyadq968b] {
    padding: 1.5rem;
}

.edit-layout[b-nfyadq968b] {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
    width: 100%;
    justify-items: center;
}

/* Edit Panel Layout */
.edit-panel[b-nfyadq968b] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    overflow-y: auto;
    height: fit-content;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    width: 75vw;
    margin: 0 auto;
}


/* Edit Form Adjustments */
.edit-form[b-nfyadq968b] {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.calendar-container[b-nfyadq968b] {
    border-radius: 12px;
    overflow: hidden;
}

.form-section h4[b-nfyadq968b] {
    color: #70146c;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-nfyadq968b] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Space between label and input */
}

/* Form Control */
.form-control[b-nfyadq968b] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded corners for modern look */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Inner shadow for depth */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus[b-nfyadq968b] {
        outline: none;
        border-color: #70146c; /* Purple border on focus */
        box-shadow: 0 0 5px rgba(112, 20, 108, 0.4); /* Subtle focus shadow */
    }
.purple-button[b-nfyadq968b] {
    margin-top: auto;
    margin-left: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .purple-button:hover[b-nfyadq968b] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .purple-button i[b-nfyadq968b] {
        font-size: 1rem;
    }

.edit-button[b-nfyadq968b] {
    margin-top: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .edit-button:hover[b-nfyadq968b] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .edit-button i[b-nfyadq968b] {
        font-size: 1rem;
    }

/* A thin purple divider */
.purple-divider[b-nfyadq968b] {
    border: 0;
    height: 2px;
    background-color: #70146c; /* match your purple color */
    margin: 1rem 0; /* space above/below the line */
}

/* A row that holds the H4 and the date input side by side */
.event-row[b-nfyadq968b] {
    display: flex;
    align-items: center; /* or center, depending on desired alignment */
    gap: 1rem; /* space between the heading and the form group */
}

    .event-row h4[b-nfyadq968b] {
        margin: 0; /* remove default heading margin */
        color: #70146c; /* match your purple theme */
    }

/* Children Grid Layout - Updated */
.children-grid[b-nfyadq968b] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    grid-auto-rows: min-content; /* Rows adjust to content height */
    gap: 1.5rem; /* Spacing between items */
    overflow-y: auto; /* Allow vertical scrolling if needed */
    padding-right: 0.5rem; /* Add padding to prevent scrollbar overlap */
    align-items: start; /* Align items to the top */
    min-height: 200px; /* Minimum height for the grid */
    width: 100%; /* Ensure the grid takes full width */
}

.child-card[b-nfyadq968b] {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    min-height: 150px;
    max-height: 200px;
    overflow: hidden;
    height: auto;
}

    .child-card:hover[b-nfyadq968b] {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
        border-color: #70146c;
    }

    .child-card.selected[b-nfyadq968b] {
        border: 2px solid #70146c;
        background: #fcf4fc;
        box-shadow: 0 4px 6px rgba(112, 20, 108, 0.15);
    }

.child-header[b-nfyadq968b] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.child-name[b-nfyadq968b] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.child-classroom[b-nfyadq968b] {
    font-size: 0.9rem;
    color: #4a5568;
    background: #f7fafc;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
}

.edit-button[b-nfyadq968b] {
    margin-top: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .edit-button:hover[b-nfyadq968b] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .edit-button i[b-nfyadq968b] {
        font-size: 1rem;
    }

.child-card.selected .edit-button[b-nfyadq968b] {
    background: #5a1057;
}

/* Add Child Card Styles */
.add-child-card[b-nfyadq968b] {
    border: 2px dashed #e2e8f0;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

    .add-child-card:hover[b-nfyadq968b] {
        border-color: #70146c;
        background: #fcf4fc;
        transform: translateY(-3px);
    }

.add-child-content[b-nfyadq968b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #70146c;
}

    .add-child-content i[b-nfyadq968b] {
        font-size: 2rem;
    }

    .add-child-content span[b-nfyadq968b] {
        font-weight: 500;
        font-size: 1.1rem;
    }

.status-container[b-nfyadq968b] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    gap: 1rem;
    flex: 1;
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.status-label[b-nfyadq968b] {
    display: flex;
    margin-left: 80%;
    align-items: center;
    gap: 0.5rem;
}

    .status-label.active[b-nfyadq968b] {
        color: #28a745;
    }

    .status-label.inactive[b-nfyadq968b] {
        color: #dc3545;
    }

/* Switch styling */
.switch[b-nfyadq968b] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: auto;
}

    .switch input[b-nfyadq968b] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-nfyadq968b] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider[b-nfyadq968b]:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider[b-nfyadq968b] {
    background-color: #28a745;
}

input:focus + .slider[b-nfyadq968b] {
    box-shadow: 0 0 1px #28a745;
}

input:checked + .slider[b-nfyadq968b]:before {
    transform: translateX(26px);
}

.slider.round[b-nfyadq968b] {
    border-radius: 34px;
}

    .slider.round[b-nfyadq968b]:before {
        border-radius: 50%;
    }

/* Form Columns Adjustment */
.form-columns[b-nfyadq968b] {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-rows: min-content;
    gap: 2rem;
    align-items: start;
    min-height: 0;
}

.calendar-hidden[b-nfyadq968b] {
    display: none !important;
}

.calendar-visible[b-nfyadq968b] {
    display: block;
    height: 600px; /* Adjust height as needed */
}

.multi-select-banner[b-nfyadq968b] {
    background-color: #70146c;
    color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.multi-button[b-nfyadq968b] {
    background-color: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .multi-button:hover[b-nfyadq968b] {
        background-color: #e8d048;
        color: #70146c;
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .multi-button:active[b-nfyadq968b] {
        transform: translateY(0);
    }

    .multi-button:disabled[b-nfyadq968b] {
        background-color: #cccccc;
        color: #666666;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .multi-button i[b-nfyadq968b] {
        font-size: 1.1rem;
    }

.purple-button-right[b-nfyadq968b] {
    margin-top: auto;
    margin-left: auto;
    position: relative;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .purple-button-right:hover[b-nfyadq968b] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .purple-button-right i[b-nfyadq968b] {
        font-size: 1rem;
    }

@media (max-width: 768px) {
    .edit-parent-page[b-nfyadq968b] {
        padding: 1rem;
    }

    .form-columns[b-nfyadq968b] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .panel-header[b-nfyadq968b] {
        padding: 1rem;
    }

    .children-grid[b-nfyadq968b] {
        grid-template-columns: 1fr;
        max-height: 50vh;
    }

    .child-name[b-nfyadq968b] {
        font-size: 1.1rem;
    }

    .edit-button[b-nfyadq968b] {
        padding: 0.65rem 1rem;
    }

    .edit-layout[b-nfyadq968b] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .edit-panel[b-nfyadq968b] {
        height: auto;
        max-height: 50vh;
    }

    .child-card[b-nfyadq968b] {
        max-height: none;
    }
}

@media (max-width: 1024px) {
    .edit-layout[b-nfyadq968b] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .children-grid[b-nfyadq968b] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-height: 400px; 
    }

    .edit-panel[b-nfyadq968b] {
        min-height: 300px;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/EditStaff.razor.rz.scp.css */
/* Edit Parent Page CSS */
.edit-parent-page[b-ykjkxxyyso] {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    overflow: hidden;
}


.edit-header[b-ykjkxxyyso] {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left‐align both items */
    gap: 0.5rem; /* space between title & button */
    margin-bottom: 1rem; /* optional extra gap before the next section */
}

    /* tighten up the H4’s margins */
    .edit-header h4[b-ykjkxxyyso] {
        margin: 0;
        font-size: 1.25rem; /* adjust to taste */
    }


    .edit-header .purple-button[b-ykjkxxyyso] {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

.save-buttons-row[b-ykjkxxyyso] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: auto;
}

.displayParent-container[b-ykjkxxyyso] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    gap: 1.5rem;
}

.search-panel[b-ykjkxxyyso] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.panel-header[b-ykjkxxyyso] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

    .panel-header h3[b-ykjkxxyyso] {
        margin: 0;
        font-size: 1.25rem;
        color: #2d3748;
    }

    .panel-header i[b-ykjkxxyyso] {
        color: #70146c;
        font-size: 1.2rem;
    }

.panel-content[b-ykjkxxyyso] {
    padding: 1.5rem;
}

.edit-layout[b-ykjkxxyyso] {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
    height: 100%;
    width: 100%;
    justify-items: center;
}

/* Edit Panel Layout */
.edit-panel[b-ykjkxxyyso] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    overflow-y: auto;
    height: fit-content;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    width: 75vw;
    margin: 0 auto;
}

/* Edit Form Adjustments */
.edit-form[b-ykjkxxyyso] {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.calendar-container[b-ykjkxxyyso] {
    border-radius: 12px;
    overflow: hidden;
}

.form-section h4[b-ykjkxxyyso] {
    color: #70146c;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group[b-ykjkxxyyso] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Space between label and input */
}

/* Form Control */
.form-control[b-ykjkxxyyso] {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px; /* Rounded corners for modern look */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Inner shadow for depth */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus[b-ykjkxxyyso] {
        outline: none;
        border-color: #70146c; /* Purple border on focus */
        box-shadow: 0 0 5px rgba(112, 20, 108, 0.4); /* Subtle focus shadow */
    }

.purple-button[b-ykjkxxyyso] {
    margin-top: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.panel-header .header-buttons[b-ykjkxxyyso] {
    margin-left: auto;
    display: flex;
    gap: 1rem;
}


.purple-button:hover[b-ykjkxxyyso] {
    background: #5a1057;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.purple-button i[b-ykjkxxyyso] {
    font-size: 1rem;
}

.multi-select-banner[b-ykjkxxyyso] {
    background-color: #70146c;
    color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.multi-button[b-ykjkxxyyso] {
    background-color: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .multi-button:hover[b-ykjkxxyyso] {
        background-color: #e8d048;
        color: #70146c;
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .multi-button:active[b-ykjkxxyyso] {
        transform: translateY(0);
    }

    .multi-button:disabled[b-ykjkxxyyso] {
        background-color: #cccccc;
        color: #666666;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .multi-button i[b-ykjkxxyyso] {
        font-size: 1.1rem;
    }

.status-container[b-ykjkxxyyso] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.status-label[b-ykjkxxyyso] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .status-label.active[b-ykjkxxyyso] {
        color: #28a745;
    }

    .status-label.inactive[b-ykjkxxyyso] {
        color: #dc3545;
    }

/* Switch styling */
.switch[b-ykjkxxyyso] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: auto;
}

    .switch input[b-ykjkxxyyso] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-ykjkxxyyso] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider[b-ykjkxxyyso]:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider[b-ykjkxxyyso] {
    background-color: #28a745;
}

input:focus + .slider[b-ykjkxxyyso] {
    box-shadow: 0 0 1px #28a745;
}

input:checked + .slider[b-ykjkxxyyso]:before {
    transform: translateX(26px);
}

.slider.round[b-ykjkxxyyso] {
    border-radius: 34px;
}

    .slider.round[b-ykjkxxyyso]:before {
        border-radius: 50%;
    }

/* A thin purple divider */
.purple-divider[b-ykjkxxyyso] {
    border: 0;
    height: 2px;
    background-color: #70146c; 
    margin: 1rem 0; /* space above/below the line */
}

/* A row that holds the H4 and the date input side by side */
.event-row[b-ykjkxxyyso] {
    display: flex;
    align-items: center; 
    gap: 1rem; /* space between the heading and the form group */
}

    .event-row h4[b-ykjkxxyyso] {
        margin: 0; /* remove default heading margin */
        color: #70146c;
    }

/* Children Grid Layout */
.children-grid[b-ykjkxxyyso] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    grid-auto-rows: min-content; /* Rows adjust to content height */
    gap: 1.5rem; /* Spacing between items */
    overflow-y: auto; /* Allow vertical scrolling */
    padding-right: 0.5rem; /* Add padding to prevent scrollbar overlap */
    align-items: start; /* Align items to the top */
    min-height: 200px; /* Minimum height for the grid */
    width: 100%; /* Ensure the grid takes full width */
}

.child-card[b-ykjkxxyyso] {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid #e2e8f0;
    position: relative;
    min-height: 150px;
    max-height: 200px;
    overflow: hidden;
    height: auto;
}

    .child-card:hover[b-ykjkxxyyso] {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
        border-color: #70146c;
    }

    .child-card.selected[b-ykjkxxyyso] {
        border: 2px solid #70146c;
        background: #fcf4fc;
        box-shadow: 0 4px 6px rgba(112, 20, 108, 0.15);
    }

.child-header[b-ykjkxxyyso] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.child-name[b-ykjkxxyyso] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.child-classroom[b-ykjkxxyyso] {
    font-size: 0.9rem;
    color: #4a5568;
    background: #f7fafc;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    align-self: flex-start;
    border: 1px solid #e2e8f0;
}

.edit-button[b-ykjkxxyyso] {
    margin-top: auto;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .edit-button:hover[b-ykjkxxyyso] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .edit-button i[b-ykjkxxyyso] {
        font-size: 1rem;
    }

.child-card.selected .edit-button[b-ykjkxxyyso] {
    background: #5a1057;
}

/* Add Child Card Styles */
.add-child-card[b-ykjkxxyyso] {
    border: 2px dashed #e2e8f0;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

    .add-child-card:hover[b-ykjkxxyyso] {
        border-color: #70146c;
        background: #fcf4fc;
        transform: translateY(-3px);
    }

.add-child-content[b-ykjkxxyyso] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #70146c;
}

    .add-child-content i[b-ykjkxxyyso] {
        font-size: 2rem;
    }

    .add-child-content span[b-ykjkxxyyso] {
        font-weight: 500;
        font-size: 1.1rem;
    }

/* Form Columns Adjustment */
.form-columns[b-ykjkxxyyso] {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    grid-auto-rows: min-content;
    gap: 2rem;
    align-items: start;
    min-height: 0;
}

.calendar-hidden[b-ykjkxxyyso] {
    display: none !important;
}

.calendar-visible[b-ykjkxxyyso] {
    display: block;
    height: 600px; 
}

.purple-button-right[b-ykjkxxyyso] {
    margin-top: auto;
    margin-left: auto;
    position: relative;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .purple-button-right:hover[b-ykjkxxyyso] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .purple-button-right i[b-ykjkxxyyso] {
        font-size: 1rem;
    }

@media (max-width: 768px) {
    .edit-parent-page[b-ykjkxxyyso] {
        padding: 1rem;
    }

    .form-columns[b-ykjkxxyyso] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .panel-header[b-ykjkxxyyso] {
        padding: 1rem;
    }

    .children-grid[b-ykjkxxyyso] {
        grid-template-columns: 1fr;
        max-height: 50vh;
    }

    .child-name[b-ykjkxxyyso] {
        font-size: 1.1rem;
    }

    .edit-button[b-ykjkxxyyso] {
        padding: 0.65rem 1rem;
    }

    .edit-layout[b-ykjkxxyyso] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .edit-panel[b-ykjkxxyyso] {
        height: auto;
        max-height: 50vh;
    }

    .child-card[b-ykjkxxyyso] {
        max-height: none;
    }
}

@media (max-width: 1024px) {
    .edit-layout[b-ykjkxxyyso] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .children-grid[b-ykjkxxyyso] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-height: 400px;
    }

    .edit-panel[b-ykjkxxyyso] {
        min-height: 300px;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/EmailConfig.razor.rz.scp.css */
body[b-ow56uzqlk7] {
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/Home.razor.rz.scp.css */
/* Admin Page Styles */
.admin-page[b-u2a2no65cp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align items near the top */
    padding: 1rem; /* Reduced padding for smaller screens */
    min-height: 100vh; /* Full height for the viewport */
    gap: 1rem; /* Reduced gap for smaller screens */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

/* Page Title */
.page-title[b-u2a2no65cp] {
    font-size: 2rem; /* Slightly smaller for better fit */
    font-weight: bold;
    color: #70146c; /* Purple title */
    margin: 0;
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif; /* Consistent font */
}

/* Calendar Container */
.calendar-container[b-u2a2no65cp] {
    width: 100%;
    max-width: 800px; /* Limit width for better layout */
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
    padding: 1rem; /* Inner padding for spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

/* Calendar */
#calendar[b-u2a2no65cp] {
    width: 100%;
    height: 400px; /* Reduced height for better fit */
}

/* Button Row */
.button-row[b-u2a2no65cp] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* Reduced gap for smaller screens */
    width: 100%;
    max-width: 800px; /* Limit width for better layout */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

/* Square Button */
.square-button[b-u2a2no65cp] {
    background-color: #70146c; /* Purple color */
    color: white;
    border: none;
    border-radius: 12px; /* Sleeker rounded edges */
    width: 120px; /* Slightly smaller button */
    height: 120px;
    font-size: 0.9rem; /* Slightly smaller font size */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    flex: 1 1 calc(25% - 1rem); /* Flex grow, shrink, and basis for responsive layout */
    box-sizing: border-box; /* Ensure padding is included in height calculation */
}

    .square-button:hover[b-u2a2no65cp] {
        background-color: #e8d048; /* Gold hover color */
        color: #70146c; /* Purple text */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Elevated shadow */
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .admin-page[b-u2a2no65cp] {
        padding: 0.5rem; /* Further reduced padding for smaller screens */
        gap: 0.5rem; /* Further reduced gap for smaller screens */
    }

    .page-title[b-u2a2no65cp] {
        font-size: 1.5rem; /* Smaller font size for smaller screens */
    }

    .calendar-container[b-u2a2no65cp] {
        max-width: 100%; /* Full width for smaller screens */
        padding: 0.5rem; /* Reduced padding for smaller screens */
    }

    #calendar[b-u2a2no65cp] {
        height: 300px; /* Further reduced height for smaller screens */
    }

    .square-button[b-u2a2no65cp] {
        width: 100px; /* Adjusted for smaller screens */
        height: 100px;
        font-size: 0.8rem; /* Smaller font size for smaller screens */
        flex: 1 1 calc(33.33% - 1rem); /* Adjust basis for smaller screens */
    }
}

@media (max-width: 480px) {
    .square-button[b-u2a2no65cp] {
        flex: 1 1 calc(50% - 1rem); /* Adjust basis for very small screens */
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/InactiveParentModal.razor.rz.scp.css */
/* Modal overlay */
.modal-overlay[b-s0lb3om25u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-s0lb3om25u] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-s0lb3om25u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-s0lb3om25u] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-s0lb3om25u] {
    margin-bottom: 1rem;
}

.modal-footer[b-s0lb3om25u] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-s0lb3om25u] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-s0lb3om25u] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-s0lb3om25u] {
        background-color: #70146c;
        color: white;
    }

.status-container[b-s0lb3om25u] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.status-label[b-s0lb3om25u] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .status-label.active[b-s0lb3om25u] {
        color: #28a745;
    }

    .status-label.inactive[b-s0lb3om25u] {
        color: #dc3545;
    }

/* Switch styling */
.switch[b-s0lb3om25u] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: auto;
}

    .switch input[b-s0lb3om25u] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-s0lb3om25u] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider[b-s0lb3om25u]:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider[b-s0lb3om25u] {
    background-color: #28a745;
}

input:focus + .slider[b-s0lb3om25u] {
    box-shadow: 0 0 1px #28a745;
}

input:checked + .slider[b-s0lb3om25u]:before {
    transform: translateX(26px);
}

.slider.round[b-s0lb3om25u] {
    border-radius: 34px;
}

    .slider.round[b-s0lb3om25u]:before {
        border-radius: 50%;
    }


.purple-button-right[b-s0lb3om25u] {
    margin-top: auto;
    margin-left: auto;
    position: relative;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .purple-button-right:hover[b-s0lb3om25u] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .purple-button-right i[b-s0lb3om25u] {
        font-size: 1rem;
    }
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/InactiveStaffModal.razor.rz.scp.css */
/* Modal overlay */
.modal-overlay[b-48qzoycj3y] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-48qzoycj3y] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Modal header, body, footer */
.modal-header[b-48qzoycj3y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-48qzoycj3y] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body[b-48qzoycj3y] {
    margin-bottom: 1rem;
}

.modal-footer[b-48qzoycj3y] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Modal buttons */
.modal-btn[b-48qzoycj3y] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    .modal-btn.cancel[b-48qzoycj3y] {
        background-color: #ccc;
        color: #333;
    }

    .modal-btn.save[b-48qzoycj3y] {
        background-color: #70146c;
        color: white;
    }

.status-container[b-48qzoycj3y] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.5rem;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.status-label[b-48qzoycj3y] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .status-label.active[b-48qzoycj3y] {
        color: #28a745;
    }

    .status-label.inactive[b-48qzoycj3y] {
        color: #dc3545;
    }

/* Switch styling */
.switch[b-48qzoycj3y] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-left: auto;
}

    .switch input[b-48qzoycj3y] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-48qzoycj3y] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

    .slider[b-48qzoycj3y]:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }

input:checked + .slider[b-48qzoycj3y] {
    background-color: #28a745;
}

input:focus + .slider[b-48qzoycj3y] {
    box-shadow: 0 0 1px #28a745;
}

input:checked + .slider[b-48qzoycj3y]:before {
    transform: translateX(26px);
}

.slider.round[b-48qzoycj3y] {
    border-radius: 34px;
}

    .slider.round[b-48qzoycj3y]:before {
        border-radius: 50%;
    }


.purple-button-right[b-48qzoycj3y] {
    margin-top: auto;
    margin-left: auto;
    position: relative;
    background: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

    .purple-button-right:hover[b-48qzoycj3y] {
        background: #5a1057;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .purple-button-right i[b-48qzoycj3y] {
        font-size: 1rem;
    }
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/ManageAdminModal.razor.rz.scp.css */
/* Modal overlay */
.modal-overlay[b-ao3ziwhzbn] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-ao3ziwhzbn] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 420px;
    max-width: 95%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Header */
.modal-header[b-ao3ziwhzbn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-ao3ziwhzbn] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Body */
.modal-body[b-ao3ziwhzbn] {
    margin-bottom: 1rem;
}

.input-field[b-ao3ziwhzbn] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.modal-footer[b-ao3ziwhzbn] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Buttons */
.modal-btn[b-ao3ziwhzbn] {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .modal-btn.cancel[b-ao3ziwhzbn] {
        background-color: #ccc;
        color: #333;
    }

        .modal-btn.cancel:hover[b-ao3ziwhzbn] {
            background-color: #b3b3b3;
        }

    .modal-btn.save[b-ao3ziwhzbn] {
        background-color: #70146c;
        color: #fff;
    }

        .modal-btn.save:hover[b-ao3ziwhzbn] {
            background-color: #5a1057;
            transform: translateY(-1px);
        }

    .modal-btn.delete[b-ao3ziwhzbn] {
        background-color: #c62828;
        color: #fff;
    }

        .modal-btn.delete:hover[b-ao3ziwhzbn] {
            background-color: #932020;
            transform: translateY(-1px);
        }
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/ManageParentModal.razor.rz.scp.css */
/* Modal overlay */
.modal-overlay[b-yco5yjom9p] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-yco5yjom9p] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 420px;
    max-width: 95%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Header */
.modal-header[b-yco5yjom9p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-yco5yjom9p] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Body */
.modal-body[b-yco5yjom9p] {
    margin-bottom: 1rem;
}

.input-field[b-yco5yjom9p] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.modal-footer[b-yco5yjom9p] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Buttons */
.modal-btn[b-yco5yjom9p] {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .modal-btn.cancel[b-yco5yjom9p] {
        background-color: #ccc;
        color: #333;
    }

        .modal-btn.cancel:hover[b-yco5yjom9p] {
            background-color: #b3b3b3;
        }

    .modal-btn.save[b-yco5yjom9p] {
        background-color: #70146c;
        color: #fff;
    }

        .modal-btn.save:hover[b-yco5yjom9p] {
            background-color: #5a1057;
            transform: translateY(-1px);
        }

    .modal-btn.delete[b-yco5yjom9p] {
        background-color: #c62828;
        color: #fff;
    }

        .modal-btn.delete:hover[b-yco5yjom9p] {
            background-color: #932020;
            transform: translateY(-1px);
        }

/* Wrap each label+input in a .form-group for spacing */
.form-group[b-yco5yjom9p] {
    margin-bottom: 1rem;
}

    /* Style for the label itself */
    .form-group label[b-yco5yjom9p] {
        display: block;
        font-size: 0.875rem; /* slightly smaller than base text */
        font-weight: 600; /* semi-bold */
        color: #2D3748; /* dark gray */
        margin-bottom: 0.25rem; /* small gap to the input */
        text-transform: uppercase; /* optional all-caps for clarity */
        letter-spacing: 0.5px; /* loose it out a bit */
    }

        /* A little accent line under the label */
        .form-group label[b-yco5yjom9p]::after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            background-color: #805AD5; /* purple accent */
            margin-top: 0.25rem;
        }


    .form-group .input-field[b-yco5yjom9p] {
        width: 100%;
        padding: 0.5rem 0.75rem;
        border: 1px solid #CBD5E0; /* light gray */
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.2s ease;
    }

        .form-group .input-field:focus[b-yco5yjom9p] {
            outline: none;
            border-color: #805AD5; /* match the label accent */
            box-shadow: 0 0 0 2px rgba(128, 90, 213, 0.2);
        }
/* _content/PeaceBrookingsCalendar/Components/Pages/Admin/ManageStaffModal.razor.rz.scp.css */
/* Modal overlay */
.modal-overlay[b-avd5yb4cva] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal content */
.modal-content[b-avd5yb4cva] {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    width: 420px;
    max-width: 95%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Header */
.modal-header[b-avd5yb4cva] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-close[b-avd5yb4cva] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Body */
.modal-body[b-avd5yb4cva] {
    margin-bottom: 1rem;
}

.input-field[b-avd5yb4cva] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Footer */
.modal-footer[b-avd5yb4cva] {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

/* Buttons */
.modal-btn[b-avd5yb4cva] {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

    .modal-btn.cancel[b-avd5yb4cva] {
        background-color: #ccc;
        color: #333;
    }

        .modal-btn.cancel:hover[b-avd5yb4cva] {
            background-color: #b3b3b3;
        }

    .modal-btn.save[b-avd5yb4cva] {
        background-color: #70146c;
        color: #fff;
    }

        .modal-btn.save:hover[b-avd5yb4cva] {
            background-color: #5a1057;
            transform: translateY(-1px);
        }

    .modal-btn.delete[b-avd5yb4cva] {
        background-color: #c62828;
        color: #fff;
    }

        .modal-btn.delete:hover[b-avd5yb4cva] {
            background-color: #932020;
            transform: translateY(-1px);
        }

/* Wrap each label+input in a .form-group for spacing */
.form-group[b-avd5yb4cva] {
    margin-bottom: 1rem;
}

    /* Style for the label itself */
    .form-group label[b-avd5yb4cva] {
        display: block;
        font-size: 0.875rem; /* slightly smaller than base text */
        font-weight: 600; /* semi-bold */
        color: #2D3748; /* dark gray */
        margin-bottom: 0.25rem; /* small gap to the input */
        text-transform: uppercase; 
        letter-spacing: 0.5px; /* loose it out a bit */
    }

        /* A little accent line under the label */
        .form-group label[b-avd5yb4cva]::after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            background-color: #805AD5; /* purple accent */
            margin-top: 0.25rem;
        }


    .form-group .input-field[b-avd5yb4cva] {
        width: 100%;
        padding: 0.5rem 0.75rem;
        border: 1px solid #CBD5E0; /* light gray */
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.2s ease;
    }

        .form-group .input-field:focus[b-avd5yb4cva] {
            outline: none;
            border-color: #805AD5; /* match the label accent */
            box-shadow: 0 0 0 2px rgba(128, 90, 213, 0.2);
        }
/* _content/PeaceBrookingsCalendar/Components/Pages/Auth/Login.razor.rz.scp.css */
.page-control[b-v4rsa6rla2] {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Start aligning from the top */
    min-height: calc(100vh - 110px); /* Ensures it doesn't go off-screen */
    padding-top: 2rem; /* Adds some padding below the header */
}

.login-container[b-v4rsa6rla2] {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Bigger and softer shadow */
    width: 100%;
    max-width: 400px; /* Fixed max width */
    text-align: center;
    margin-top: 0; /* Removes extra margin */
}



/* Login Title */
.login-title[b-v4rsa6rla2] {
    font-size: 1.5rem;
    color: #70146c; /* Purple for consistency */
    margin-bottom: 1rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

/* Form Groups */
.form-group[b-v4rsa6rla2] {
    margin-bottom: 1rem;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

/* Input Fields */
.form-control[b-v4rsa6rla2] {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

    .form-control:focus[b-v4rsa6rla2] {
        outline: none;
        border-color: #70146c; /* Purple focus */
        box-shadow: 0 0 5px rgba(112, 20, 108, 0.4); /* Subtle focus shadow */
    }

/* Login Button */
.login-button[b-v4rsa6rla2] {
    background-color: #70146c;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

    .login-button:hover[b-v4rsa6rla2] {
        background-color: #e8d048; /* Gold hover effect */
        color: #70146c;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    }
    
    .error-message[b-v4rsa6rla2] {
        color: red;
        margin-top: 1rem;
        font-weight: bold;
        text-align: center;
    }
    
/* _content/PeaceBrookingsCalendar/Components/Pages/Parent/AccountSettings.razor.rz.scp.css */
.form-container[b-tqfai2x0b3] {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}

.form-group[b-tqfai2x0b3] {
    margin-bottom: 1rem;
}

    .form-group label[b-tqfai2x0b3] {
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
    }

.form-control[b-tqfai2x0b3] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-actions[b-tqfai2x0b3] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.square-button[b-tqfai2x0b3] {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 1px solid #ccc;
    cursor: pointer;
}

.save-button[b-tqfai2x0b3] {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

.back-button[b-tqfai2x0b3] {
    background-color: #e57373;
    color: white;
    border-color: #e57373;
}

.square-button:hover[b-tqfai2x0b3] {
    opacity: 0.9;
}

.error-title[b-tqfai2x0b3] {
    color: red;
    font-size: 1rem;
    margin-top: 1rem;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Parent/Components/DefaultScheduleEditor.razor.rz.scp.css */
/* Container styling */
.container[b-cwnw0sb9hb] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9; /* Subtle background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Action buttons container */
.action-buttons-container[b-cwnw0sb9hb] {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Destructive actions section */
.destructive-actions[b-cwnw0sb9hb] {
    border-top: 2px solid #fee2e2; /* Light red border */
    padding-top: 1.5rem;
    text-align: center;
}

/* Accessible red button */
.red-button[b-cwnw0sb9hb] {
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

    .red-button:hover[b-cwnw0sb9hb] {
        background: #b91c1c;
        transform: translateY(-1px);
    }

/* Form actions */
.form-actions[b-cwnw0sb9hb] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Purple button update */
.purple-button[b-cwnw0sb9hb] {
    background: #70146c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

    .purple-button:hover[b-cwnw0sb9hb] {
        background: #5a1057;
    }

/* Gray button update */
.gray-button[b-cwnw0sb9hb] {
    background: #6b7280;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

/* Page Title */
.text-2xl[b-cwnw0sb9hb] {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Form Card */
.bg-white[b-cwnw0sb9hb] {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

/* Form Section Styling */
.mb-6[b-cwnw0sb9hb] {
    margin-bottom: 1.5rem;
    background-color: #ffffff; /* White background for each section */
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
}

/* Day Headers */
.text-lg[b-cwnw0sb9hb] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #70146c; /* Nice purple tone */
}

/* Labels */
.block[b-cwnw0sb9hb] {
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
}

/* Select Fields */
.form-control[b-cwnw0sb9hb] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Slight inner shadow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus[b-cwnw0sb9hb] {
    outline: none;
    border-color: #70146c; /* Purple border on focus */
    box-shadow: 0 0 5px rgba(112, 20, 108, 0.4); /* Subtle focus shadow */
}

/* Dropdown Container */
.dropdown-container[b-cwnw0sb9hb] {
    margin-bottom: 1.5rem;
}

/* Buttons */
button[b-cwnw0sb9hb] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

button:hover[b-cwnw0sb9hb] {
    transform: scale(1.05);
}

/* Save Button */
.bg-blue-500[b-cwnw0sb9hb] {
    background-color: #70146c;
    color: white;
}

.bg-blue-500:hover[b-cwnw0sb9hb] {
    background-color: #e8d048;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .grid[b-cwnw0sb9hb] {
        grid-template-columns: 1fr; /* Stack items vertically */
        gap: 1rem;
    }

    .container[b-cwnw0sb9hb] {
        padding: 1rem;
    }
}



/* Container for horizontal layout */
.days-container[b-cwnw0sb9hb] {
    display: flex;
    flex-wrap: wrap;           /* Wrap to a new row if there's not enough space */
    gap: 2rem;                 /* Space between cards */
    justify-content: space-evenly; /* Distribute extra space evenly */
    margin: 0 auto;            /* Center the flex container itself */
    max-width: 1200px;        
}

/* Each day card */
.day-card[b-cwnw0sb9hb] {
    flex: 1 1 200px;           /* Grow/shrink, min width ~200px */
    max-width: 250px;          /* Prevent cards from getting too wide */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* Optional Responsive Adjustments for Day Cards */
@media (max-width: 768px) {
    .day-card[b-cwnw0sb9hb] {
        width: 180px;
    }
    .form-actions[b-cwnw0sb9hb] {
        flex-direction: column;
    }

    .destructive-actions[b-cwnw0sb9hb] {
        padding-top: 1rem;
    }

    button[b-cwnw0sb9hb] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .day-card[b-cwnw0sb9hb] {
        width: 150px;
    }
}

/* _content/PeaceBrookingsCalendar/Components/Pages/Parent/EditChildSchedule.razor.rz.scp.css */
/* Container styling */
.container[b-4ess8wk0vz] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9; /* Subtle background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Page Title */
.text-2xl[b-4ess8wk0vz] {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Section Headers */
.text-lg[b-4ess8wk0vz] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #70146c; /* Purple tone */
}

/* Utility class for margin-bottom */
.mb-6[b-4ess8wk0vz] {
    margin-bottom: 1.5rem;
}

/* Form controls (dropdowns, etc.) */
.form-control[b-4ess8wk0vz] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus[b-4ess8wk0vz] {
    outline: none;
    border-color: #70146c;
    box-shadow: 0 0 5px rgba(112, 20, 108, 0.4);
}

/* Calendar Container */
#calendar[b-4ess8wk0vz] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card styling for schedule editing sections */
.bg-gray-50[b-4ess8wk0vz] {
    background-color: #f7f7f7;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

/* Checkbox styling */
input[type="checkbox"][b-4ess8wk0vz] {
    margin-right: 0.5rem;
    cursor: pointer;
}

/* Time input styling */
input[type="time"][b-4ess8wk0vz] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.multi-select-banner[b-4ess8wk0vz] {
    background-color: #70146c;
    color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* Button styling (generic) */
button[b-4ess8wk0vz] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover[b-4ess8wk0vz] {
    transform: scale(1.05);
}

/* Blue button (Select All, Save Changes) */
.bg-blue-500[b-4ess8wk0vz] {
    background-color: #2563eb;
    color: white;
}

.bg-blue-500:hover[b-4ess8wk0vz] {
    background-color: #1d4ed8;
}

/* Gray button (Edit button) */
.bg-gray-500[b-4ess8wk0vz] {
    background-color: #6b7280;
    color: white;
}

.bg-gray-500:hover[b-4ess8wk0vz] {
    background-color: #4b5563;
}

/* Red button (Delete button) */
.bg-red-500[b-4ess8wk0vz] {
    background-color: #dc2626;
    color: white;
}

.bg-red-500:hover[b-4ess8wk0vz] {
    background-color: #b91c1c;
}

/* Green button (Add Entry) */
.bg-green-500[b-4ess8wk0vz] {
    background-color: #16a34a;
    color: white;
}

.bg-green-500:hover[b-4ess8wk0vz] {
    background-color: #15803d;
}

/* Flex layout for schedule entry rows */
.flex[b-4ess8wk0vz] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container[b-4ess8wk0vz] {
        padding: 1rem;
    }
    #calendar[b-4ess8wk0vz] {
        padding: 0.5rem;
    }
    .flex[b-4ess8wk0vz] {
        flex-direction: column;
        align-items: flex-start;
    }
    .flex > input[type="time"][b-4ess8wk0vz] {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Form Section */
.form-section[b-4ess8wk0vz] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.form-section h4[b-4ess8wk0vz] {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.form-group[b-4ess8wk0vz] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-group label[b-4ess8wk0vz] {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.form-control[b-4ess8wk0vz] {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.15s ease-in-out;
}

/* Style for select dropdowns */
select.form-control[b-4ess8wk0vz] {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1em;
    padding-right: 2rem;
}

.form-control:focus[b-4ess8wk0vz] {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Style for date input */
input[type="date"].form-control[b-4ess8wk0vz] {
    padding-right: 0.5rem;
}

.purple-button[b-4ess8wk0vz] {
    background-color: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.purple-button:hover[b-4ess8wk0vz] {
    background-color: #e8d048;
    color: #70146c;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.purple-button:active[b-4ess8wk0vz] {
    transform: translateY(0);
}

.purple-button:disabled[b-4ess8wk0vz] {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.purple-button i[b-4ess8wk0vz] {
    font-size: 1.1rem;
}

.button-group[b-4ess8wk0vz] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Style for disabled options */
select.form-control option:disabled[b-4ess8wk0vz] {
    color: #a0aec0;
    background-color: #f7fafc;
}

.edit-schedule-page[b-4ess8wk0vz] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title[b-4ess8wk0vz] {
    font-size: 2rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    text-align: center;
}

.search-panel[b-4ess8wk0vz] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.panel-header[b-4ess8wk0vz] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.panel-header i[b-4ess8wk0vz] {
    color: #6B46C1;
    font-size: 1.2rem;
}

.panel-header h3[b-4ess8wk0vz] {
    margin: 0;
    color: #4A4A4A;
    font-size: 1.2rem;
}

.panel-content[b-4ess8wk0vz] {
    padding: 1rem;
}

.schedule-container[b-4ess8wk0vz] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.schedule-layout[b-4ess8wk0vz] {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.form-section[b-4ess8wk0vz] {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 1.5rem;
}

.form-content[b-4ess8wk0vz] {
    margin-top: 1rem;
}

.form-group[b-4ess8wk0vz] {
    margin-bottom: 1.5rem;
}

.form-group label[b-4ess8wk0vz] {
    display: block;
    margin-bottom: 0.5rem;
    color: #4A4A4A;
    font-weight: 500;
}

.form-control[b-4ess8wk0vz] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus[b-4ess8wk0vz] {
    border-color: #6B46C1;
    outline: none;
}

.calendar-section[b-4ess8wk0vz] {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.empty-state[b-4ess8wk0vz] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.empty-state i[b-4ess8wk0vz] {
    font-size: 3rem;
    color: #6B46C1;
    margin-bottom: 1rem;
}

.empty-state h3[b-4ess8wk0vz] {
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.empty-state p[b-4ess8wk0vz] {
    color: #666;
}

@media (max-width: 1024px) {
    .schedule-layout[b-4ess8wk0vz] {
        grid-template-columns: 1fr;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Parent/Home.razor.rz.scp.css */
/* Parent Home Styling */
.parent-page[b-kgrs0bj9hp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Title */
.page-title[b-kgrs0bj9hp] {
    font-size: 2rem;
    font-weight: bold;
    color: #70146c;
    margin: 0 0 1.5rem;
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif;
}

/* Dashboard Layout */
.dashboard-layout[b-kgrs0bj9hp] {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Calendar Wrapper to position sidebar */
.calendar-wrapper[b-kgrs0bj9hp] {
    position: relative;
}

/* Calendar Container */
.calendar-container[b-kgrs0bj9hp] {
    width: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    box-sizing: border-box;
    margin: 0 auto; /* Center the calendar */
}

/* Schedule Load Panel */
.schedule-load-panel.search-panel[b-kgrs0bj9hp] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 1rem;
}

.panel-header[b-kgrs0bj9hp] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

    .panel-header i[b-kgrs0bj9hp] {
        color: #70146c;
        font-size: 1.2rem;
    }

    .panel-header h3[b-kgrs0bj9hp] {
        margin: 0;
        color: #4A4A4A;
        font-size: 1.2rem;
        font-family: 'DM Sans', Arial, sans-serif;
    }

.panel-content[b-kgrs0bj9hp] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Rectangular Button */
.rectangular-button[b-kgrs0bj9hp] {
    background-color: #70146c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .rectangular-button:hover[b-kgrs0bj9hp] {
        background-color: #e8d048;
        color: #70146c;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

/* Date Pickers adjustments */
.date-pickers[b-kgrs0bj9hp] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.mud-date-picker[b-kgrs0bj9hp] {
    width: 100%;
}

    .mud-date-picker .mud-input[b-kgrs0bj9hp] {
        font-size: 0.9rem;
    }



/* Submission Sidebar */
.submission-sidebar[b-kgrs0bj9hp] {
    position: absolute;
    top: 0;
    right: -220px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Submission Indicator */
.submission-indicator[b-kgrs0bj9hp] {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
}

    .submission-indicator.submitted[b-kgrs0bj9hp] {
        background-color: #d4edda;
        color: #155724;
    }

    .submission-indicator.not-submitted[b-kgrs0bj9hp] {
        background-color: #f8d7da;
        color: #721c24;
    }

/* Button Row */
.button-row[b-kgrs0bj9hp] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

/* Square Button */
.square-button[b-kgrs0bj9hp] {
    background-color: #70146c;
    color: white;
    border: none;
    border-radius: 12px;
    width: 140px;
    height: 140px;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .square-button:hover[b-kgrs0bj9hp] {
        background-color: #e8d048;
        color: #70146c;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

/* Calendar */
#calendar[b-kgrs0bj9hp] {
    width: 100%;
    height: auto;
    min-height: 400px;
    font-family: 'DM Sans', Arial, sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .parent-page[b-kgrs0bj9hp] {
        padding: 1rem;
    }

    .page-title[b-kgrs0bj9hp] {
        font-size: 1.5rem;
    }

    .dashboard-layout[b-kgrs0bj9hp] {
        flex-direction: column;
        position: relative;
    }

    .submission-sidebar[b-kgrs0bj9hp] {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .calendar-container[b-kgrs0bj9hp] {
        max-width: 100%;
    }

    #calendar[b-kgrs0bj9hp] {
        min-height: 300px;
    }

    .square-button[b-kgrs0bj9hp] {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .square-button[b-kgrs0bj9hp] {
        width: 100px; /* Smaller for very small screens */
        height: 100px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .submission-sidebar[b-kgrs0bj9hp] {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .schedule-load-panel[b-kgrs0bj9hp] {
        margin-top: 1.5rem;
    }

    .load-default-btn[b-kgrs0bj9hp] {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .panel-header[b-kgrs0bj9hp] {
        padding: 0.75rem;
    }

    .panel-content[b-kgrs0bj9hp] {
        padding: 0.75rem;
    }

    .rectangular-button[b-kgrs0bj9hp] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Staff/AccountSettings.razor.rz.scp.css */
.form-container[b-miqsz7njsa] {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.form-container form[b-miqsz7njsa] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-miqsz7njsa] {
    margin-bottom: 1rem;
}

    .form-group label[b-miqsz7njsa] {
        font-weight: bold;
        display: block;
        margin-bottom: 0.5rem;
    }

.form-control[b-miqsz7njsa] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-actions[b-miqsz7njsa] {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.square-button[b-miqsz7njsa] {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 1px solid #ccc;
    cursor: pointer;
}

.save-button[b-miqsz7njsa] {
    background-color: #4caf50;
    color: white;
    border-color: #4caf50;
}

.back-button[b-miqsz7njsa] {
    background-color: #e57373;
    color: white;
    border-color: #e57373;
}

.square-button:hover[b-miqsz7njsa] {
    opacity: 0.9;
}

.error-title[b-miqsz7njsa] {
    color: red;
    font-size: 1rem;
    margin-top: 1rem;
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Staff/Components/StaffDefault.razor.rz.scp.css */
/* Container styling */
.container[b-5al9ge2eef] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9; /* Subtle background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Page Title */
.page-title[b-5al9ge2eef] {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Horizontal layout for day cards */
.days-container[b-5al9ge2eef] {
    display: flex;
    flex-wrap: wrap;           
    gap: 2rem;                 /* Space between cards */
    justify-content: space-evenly; /* Evenly distribute cards horizontally */
    margin: 0 auto;            /* Center the container */
    max-width: 1200px;         /* Limit overall width */
}

/* Each day card */
.day-card[b-5al9ge2eef] {
    flex: 1 1 200px;           /* Grow and shrink with a minimum basis */
    max-width: 250px;          /* Prevent cards from getting too wide */
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Form Group for label/select spacing */
.form-group[b-5al9ge2eef] {
    margin-bottom: 1rem;
}

/* Select Fields */
.form-control[b-5al9ge2eef] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* Slight inner shadow */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus[b-5al9ge2eef] {
    outline: none;
    border-color: #70146c; /* Purple border on focus */
    box-shadow: 0 0 5px rgba(112, 20, 108, 0.4); /* Subtle focus shadow */
}

/* Button Row */
.button-row[b-5al9ge2eef] {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

/* Button Styling */
button[b-5al9ge2eef] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover[b-5al9ge2eef] {
    transform: scale(1.05);
}




/* Action buttons container */
.action-buttons-container[b-5al9ge2eef] {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Destructive actions section */
.destructive-actions[b-5al9ge2eef] {
    border-top: 2px solid #fee2e2; /* Light red border */
    padding-top: 1.5rem;
    text-align: center;
}

/* Accessible red button */
.red-button[b-5al9ge2eef] {
    background: #dc2626;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

    .red-button:hover[b-5al9ge2eef] {
        background: #b91c1c;
        transform: translateY(-1px);
    }

/* Form actions */
.form-actions[b-5al9ge2eef] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Purple button update */
.purple-button[b-5al9ge2eef] {
    background: #70146c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

    .purple-button:hover[b-5al9ge2eef] {
        background: #5a1057;
    }

/* Gray button update */
.gray-button[b-5al9ge2eef] {
    background: #6b7280;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
}

/* Save Button */
.bg-blue-500[b-5al9ge2eef] {
    background-color: #2563eb;
    color: white;
}

.bg-blue-500:hover[b-5al9ge2eef] {
    background-color: #1d4ed8;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .container[b-5al9ge2eef] {
        padding: 1rem;
    }
    .page-title[b-5al9ge2eef] {
        font-size: 1.5rem;
    }
    .day-card[b-5al9ge2eef] {
        width: 180px;
    }
    .form-actions[b-5al9ge2eef] {
        flex-direction: column;
    }

    .destructive-actions[b-5al9ge2eef] {
        padding-top: 1rem;
    }

    button[b-5al9ge2eef] {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .day-card[b-5al9ge2eef] {
        width: 150px;
    }
    button[b-5al9ge2eef] {
        padding: 0.75rem 0.75rem;
        font-size: 0.8rem;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Staff/EditAvailability.razor.rz.scp.css */
/* Container styling */
.container[b-25lbfv7cwm] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9; /* Subtle background */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Page Title */
.text-2xl[b-25lbfv7cwm] {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* Section Headers */
.text-lg[b-25lbfv7cwm] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #70146c; /* Purple tone */
}

/* Utility class for margin-bottom */
.mb-6[b-25lbfv7cwm] {
    margin-bottom: 1.5rem;
}

/* Form controls (dropdowns, etc.) */
.form-control[b-25lbfv7cwm] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus[b-25lbfv7cwm] {
    outline: none;
    border-color: #70146c;
    box-shadow: 0 0 5px rgba(112, 20, 108, 0.4);
}

/* Calendar Container */
#calendar[b-25lbfv7cwm] {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card styling for schedule editing sections */
.bg-gray-50[b-25lbfv7cwm] {
    background-color: #f7f7f7;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

/* Checkbox styling */
input[type="checkbox"][b-25lbfv7cwm] {
    margin-right: 0.5rem;
    cursor: pointer;
}

/* Time input styling */
input[type="time"][b-25lbfv7cwm] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.multi-select-banner[b-25lbfv7cwm] {
    background-color: #70146c;
    color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

/* Button styling (generic) */
button[b-25lbfv7cwm] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover[b-25lbfv7cwm] {
    transform: scale(1.05);
}

/* Blue button (Select All, Save Changes) */
.bg-blue-500[b-25lbfv7cwm] {
    background-color: #2563eb;
    color: white;
}

.bg-blue-500:hover[b-25lbfv7cwm] {
    background-color: #1d4ed8;
}

/* Gray button (Edit button) */
.bg-gray-500[b-25lbfv7cwm] {
    background-color: #6b7280;
    color: white;
}

.bg-gray-500:hover[b-25lbfv7cwm] {
    background-color: #4b5563;
}

/* Red button (Delete button) */
.bg-red-500[b-25lbfv7cwm] {
    background-color: #dc2626;
    color: white;
}

.bg-red-500:hover[b-25lbfv7cwm] {
    background-color: #b91c1c;
}

/* Green button (Add Entry) */
.bg-green-500[b-25lbfv7cwm] {
    background-color: #16a34a;
    color: white;
}

.bg-green-500:hover[b-25lbfv7cwm] {
    background-color: #15803d;
}

/* Flex layout for schedule entry rows */
.flex[b-25lbfv7cwm] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container[b-25lbfv7cwm] {
        padding: 1rem;
    }
    #calendar[b-25lbfv7cwm] {
        padding: 0.5rem;
    }
    .flex[b-25lbfv7cwm] {
        flex-direction: column;
        align-items: flex-start;
    }
    .flex > input[type="time"][b-25lbfv7cwm] {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Form Section */
.form-section[b-25lbfv7cwm] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.form-section h4[b-25lbfv7cwm] {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.form-group[b-25lbfv7cwm] {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.form-group label[b-25lbfv7cwm] {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.form-control[b-25lbfv7cwm] {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.15s ease-in-out;
}

/* Style for select dropdowns */
select.form-control[b-25lbfv7cwm] {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1em;
    padding-right: 2rem;
}

.form-control:focus[b-25lbfv7cwm] {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Style for date input */
input[type="date"].form-control[b-25lbfv7cwm] {
    padding-right: 0.5rem;
}

.purple-button[b-25lbfv7cwm] {
    background-color: #70146c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.purple-button:hover[b-25lbfv7cwm] {
    background-color: #e8d048;
    color: #70146c;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.purple-button:active[b-25lbfv7cwm] {
    transform: translateY(0);
}

.purple-button:disabled[b-25lbfv7cwm] {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.purple-button i[b-25lbfv7cwm] {
    font-size: 1.1rem;
}

.button-group[b-25lbfv7cwm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Style for disabled options */
select.form-control option:disabled[b-25lbfv7cwm] {
    color: #a0aec0;
    background-color: #f7fafc;
}

.edit-schedule-page[b-25lbfv7cwm] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-title[b-25lbfv7cwm] {
    font-size: 2rem;
    color: #4A4A4A;
    margin-bottom: 2rem;
    text-align: center;
}

.search-panel[b-25lbfv7cwm] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.panel-header[b-25lbfv7cwm] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.panel-header i[b-25lbfv7cwm] {
    color: #6B46C1;
    font-size: 1.2rem;
}

.panel-header h3[b-25lbfv7cwm] {
    margin: 0;
    color: #4A4A4A;
    font-size: 1.2rem;
}

.panel-content[b-25lbfv7cwm] {
    padding: 1rem;
}

.schedule-container[b-25lbfv7cwm] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.schedule-layout[b-25lbfv7cwm] {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.form-section[b-25lbfv7cwm] {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 1.5rem;
}

.form-content[b-25lbfv7cwm] {
    margin-top: 1rem;
}

.form-group[b-25lbfv7cwm] {
    margin-bottom: 1.5rem;
}

.form-group label[b-25lbfv7cwm] {
    display: block;
    margin-bottom: 0.5rem;
    color: #4A4A4A;
    font-weight: 500;
}

.form-control[b-25lbfv7cwm] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus[b-25lbfv7cwm] {
    border-color: #6B46C1;
    outline: none;
}

.calendar-section[b-25lbfv7cwm] {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.empty-state[b-25lbfv7cwm] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.empty-state i[b-25lbfv7cwm] {
    font-size: 3rem;
    color: #6B46C1;
    margin-bottom: 1rem;
}

.empty-state h3[b-25lbfv7cwm] {
    color: #4A4A4A;
    margin-bottom: 0.5rem;
}

.empty-state p[b-25lbfv7cwm] {
    color: #666;
}

@media (max-width: 1024px) {
    .schedule-layout[b-25lbfv7cwm] {
        grid-template-columns: 1fr;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Pages/Staff/Home.razor.rz.scp.css */
/* Staff Home Styling */
.staff-page[b-1tq89yqqvs] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    min-height: 100vh;
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page Title */
.page-title[b-1tq89yqqvs] {
    font-size: 2rem;
    font-weight: bold;
    color: #70146c;
    margin: 0 0 1.5rem;
    text-align: center;
    font-family: 'DM Sans', Arial, sans-serif;
}

/* Dashboard Layout */
.dashboard-layout[b-1tq89yqqvs] {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 1.5rem;
    position: relative;
}

/* Calendar Wrapper to position sidebar */
.calendar-wrapper[b-1tq89yqqvs] {
    position: relative;
}

/* Calendar Container */
.calendar-container[b-1tq89yqqvs] {
    width: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    box-sizing: border-box;
    margin: 0 auto;
}

/* Schedule Load Panel */
.schedule-load-panel.search-panel[b-1tq89yqqvs] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 1rem;
}

.panel-header[b-1tq89yqqvs] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

    .panel-header i[b-1tq89yqqvs] {
        color: #70146c;
        font-size: 1.2rem;
    }

    .panel-header h3[b-1tq89yqqvs] {
        margin: 0;
        color: #4A4A4A;
        font-size: 1.2rem;
        font-family: 'DM Sans', Arial, sans-serif;
    }

.panel-content[b-1tq89yqqvs] {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Rectangular Button */
.rectangular-button[b-1tq89yqqvs] {
    background-color: #70146c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .rectangular-button:hover[b-1tq89yqqvs] {
        background-color: #e8d048;
        color: #70146c;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

/* Date Pickers adjustments */
.date-pickers[b-1tq89yqqvs] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.mud-date-picker[b-1tq89yqqvs] {
    width: 100%;
}

    .mud-date-picker .mud-input[b-1tq89yqqvs] {
        font-size: 0.9rem;
    }


/* Submission Sidebar */
.submission-sidebar[b-1tq89yqqvs] {
    position: absolute;
    top: 0;
    right: -220px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Submission Indicator */
.submission-indicator[b-1tq89yqqvs] {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
}
.submission-indicator.submitted[b-1tq89yqqvs] {
    background-color: #d4edda;
    color: #155724;
}
.submission-indicator.not-submitted[b-1tq89yqqvs] {
    background-color: #f8d7da;
    color: #721c24;
}

/* Button Row */
.button-row[b-1tq89yqqvs] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
}

/* Square Button */
.square-button[b-1tq89yqqvs] {
    background-color: #70146c;
    color: white;
    border: none;
    border-radius: 12px;
    width: 140px;
    height: 140px;
    font-size: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.square-button:hover[b-1tq89yqqvs] {
    background-color: #e8d048;
    color: #70146c;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Calendar */
#calendar[b-1tq89yqqvs] {
    width: 100%;
    height: auto;
    min-height: 400px;
    font-family: 'DM Sans', Arial, sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .staff-page[b-1tq89yqqvs] {
        padding: 1rem;
    }
    .page-title[b-1tq89yqqvs] {
        font-size: 1.5rem;
    }
    .dashboard-layout[b-1tq89yqqvs] {
        flex-direction: column;
        position: relative;
    }
    .calendar-container[b-1tq89yqqvs] {
        max-width: 100%;
    }
    #calendar[b-1tq89yqqvs] {
        min-height: 300px;
    }
    .square-button[b-1tq89yqqvs] {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .square-button[b-1tq89yqqvs] {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .submission-sidebar[b-1tq89yqqvs] {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .schedule-load-panel[b-1tq89yqqvs] {
        margin-top: 1.5rem;
    }

    .load-default-btn[b-1tq89yqqvs] {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .panel-header[b-1tq89yqqvs] {
        padding: 0.75rem;
    }

    .panel-content[b-1tq89yqqvs] {
        padding: 0.75rem;
    }

    .rectangular-button[b-1tq89yqqvs] {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* _content/PeaceBrookingsCalendar/Components/Shared/Breadcrumb.razor.rz.scp.css */
.breadcrumb[b-ouhsasaisj] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0.75rem 1rem;
    margin: 1.5rem 0;
    font-size: 1.15rem;
    font-family: 'DM Sans', Arial, sans-serif;
    font-weight: 600;
    color: #70146c;
    background-color: #fdf6fc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item[b-ouhsasaisj] {
    display: flex;
    align-items: center;
}

    .breadcrumb-item a[b-ouhsasaisj] {
        color: #70146c;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .breadcrumb-item a:hover[b-ouhsasaisj] {
            text-decoration: underline;
            color: #e8d048;
        }

.breadcrumb-separator[b-ouhsasaisj] {
    margin: 0 0.75rem;
    color: #aaa;
    font-weight: normal;
}
