/*.row {
    margin-left: 10px !important;
    margin-right: 10px !important;
}*/

.header-style {
    font-size: 30px;
    color: #000000;
    padding-left: 10px;
}

.sub-header-style {
    font-size: 14px;
}

.page-style {
    /*padding: 0px;*/
    padding: 20px;
    background: #fff;
    border: 0px solid #ccc;
    box-shadow: 0px 12px 25px #ccc;
    border-radius: 5px;
}

.hr-style {
    background-color: currentColor;
}

label {
    color: #4F4F50;
    font-weight: normal;
}

.form-group {
    margin: 15px;
}

.page_buttons {
    min-width: 15%;
    height: 36px;
    font-size: 14px;
    text-transform: none;
    background: #6f2d91;
    border-radius: 4px;
    color: #fff;
    border: 0px solid #fff;
    margin: 16px 0px 0px 0px;
    padding:0px 10px;
}

.alert {
    /*margin-left: 10px;*/
}

body {
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

.page-padding {
    padding-top: 15px
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    width: 100%;
}

.left-container {
    /*display: flex;*/
}

.left-box {
    min-width: 50%;
    border-radius: 8px;
    /*padding: 20px;*/
}

.centered-box {
    min-width: 50%;
    padding: 20px;
    border-radius: 8px;
}

.centered-container {
    width: 800px;
    margin: auto;
    margin-top: 20px;
    height: unset;
}

/* Set the height of the dropdown input */
.custom-dropdown-height.k-input {
    height: 34px !important; /* Desired input height */
}

/* Set the height of dropdown items */
.custom-dropdown-height.k-item {
    height: 34px !important; /* Desired item height */
}

/* Set the height of the dropdown input */
.custom-dropdown-width.k-picker {
    height: 34px !important; /* Desired input height */
    width: 33% !important;
}

/* Set the height of dropdown items */
.custom-dropdown-width.k-item {
    height: 34px !important; /* Desired item height */
}

.k-picker-outline:hover, .k-picker-outline.k-hover {
    border-color: lightgrey !important;
    color: black !important;
    background-color: white !important;
}

.k-picker-outline:focus {
    border: 2px solid #088DC9 !important;
}

.k-picker-outline {
    border-color: lightgrey !important;
    height: 34px !important;
}

.k-picker-solid:hover, .k-picker-solid.k-hover {
    border-color: lightgrey !important;
    color: black !important;
    background-color: white !important;
}

.k-picker-solid:focus {
    border: 2px solid #088DC9 !important;
    box-shadow: 0 0 0 0.125rem rgba(52, 142, 227, 0.3);
}

.k-picker-solid {
    border-color: lightgrey !important;
    height: 34px !important;
    background-color: white !important;
    font-size: 14px !important;
}

/* Fullscreen overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255 255 255 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050; /* Ensure it's on top */
}

/* Spinner visibility */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

.spinner-color {
    color: #6f2d91;
}

.accordion {
    margin: 20px;
}

.accordion-item {
    /* No border for accordion items */
}

.accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    background-color: transparent;
    padding: 10px 0;
}

    .accordion-header span {
        margin-left: 8px;
    }

    .accordion-header.selected {
        color: #6F2C91; /* Selected title color */
    }

    .accordion-header:not(.selected) {
        color: #4F4F50; /* Unselected title color */
    }

/* Base arrow styles */
.accordion-arrow {
    margin-right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

    /* Arrow pointing right (unselected) */
    .accordion-arrow.right {
        border-width: 6px 0 6px 10px;
        border-color: transparent transparent transparent #4F4F50; /* Default arrow color */
    }

    /* Arrow pointing down (selected) */
    .accordion-arrow.down {
        border-width: 10px 6px 0 6px;
        border-color: #6F2C91 transparent transparent transparent; /* Selected arrow color */
    }

.accordion-body {
    padding: 15px;
    background-color: #fff;
    overflow: auto; /* Adds scrollbars if the content exceeds the container */
    word-wrap: break-word; /* Ensures long words (like URLs) break to fit */
    white-space: normal; /* Allows text to wrap within the container */
}

    /* Style for anchor tags to prevent them from overflowing */
    .accordion-body a {
        color: #007BFF; /* Default link color */
        word-break: break-all; /* Forces line breaks for long links */
        text-decoration: underline; /* Optional: keeps links underlined */
    }
