html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    /*    -webkit-mask: url('../images/Logo.svg');*/
    /*    mask: url('../images/Logo.svg');*/
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
}

.template-body {
    background: rgb(247,247,247);
    background: radial-gradient(circle, rgba(247,247,247,1) 0%, rgba(231,203,203,1) 100%);
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.timeline-display-4 {
    font-size: 4rem;
}

.timeline-card-header {
    font-size: 1.2rem;
    text-align: center;
}

/*.timeline-card-title {
    text-align: center;
}*/

.timeline-btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
}

    .timeline-btn-group .timeline-btn {
        width: 50%;
    }

div#content_wrapper {
    border-radius: 0;
    border: none;
    width: 1134px;
    min-height: 70vh;
    margin-top: 10px;
}

div#content_wrapper_inner {
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px 8px 8px 8px;
    padding: 0 0 10px;
    min-height: 460px;
}

.account_layout div#page_title {
    padding: 1.2em 3%;
}

div#page_title {
    border-radius: 0;
    background: #dadde5;
    /* background: #bec3ce; */
}

div#content_wide {
    margin: 3% 0 0 3%;
    width: 94%;
}

/*.action_micro {
    background: #7acb59;
    border: none;
    padding: 0.8em 1.5em;
    transition: background 0.3s;
    color: #fff;
}*/
.action_micro {
    background: none repeat scroll 0 0 #3e90cf;
    border: 2px solid #4374ad;
    border-radius: 5px 5px 5px 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: .3em .8em;
    text-decoration: none !important;
}

a {
    /*color: #428bca;*/
    text-decoration: none;
}

/* Remove all vertical gridlines */
.no-vertical-lines .dxbl-grid-table > thead tr > th,
.no-vertical-lines .dxbl-grid-table > tbody tr > th,
.no-vertical-lines .dxbl-grid-table > tbody tr > td {
    border-left: none !important;
    border-right: none !important;
}

    .no-vertical-lines .dxbl-grid-table > tbody tr > td:nth-child(2), /* Second column */
    .no-vertical-lines .dxbl-grid-table > thead tr > th:nth-child(2),
    .no-vertical-lines .dxbl-grid-table > tbody tr > td:nth-child(3), /* Third column */
    .no-vertical-lines .dxbl-grid-table > thead tr > th:nth-child(3),
    .no-vertical-lines .dxbl-grid-table > tbody tr > td:nth-child(4), /* Fourth column */
    .no-vertical-lines .dxbl-grid-table > thead tr > th:nth-child(4),
    .no-vertical-lines .dxbl-grid-table > tbody tr > td:nth-child(5), /* Second column */
    .no-vertical-lines .dxbl-grid-table > thead tr > th:nth-child(5),
    .no-vertical-lines .dxbl-grid-table > tbody tr > td:nth-child(6), /* Third column */
    .no-vertical-lines .dxbl-grid-table > thead tr > th:nth-child(6) {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right:0 !important;
    }

    .no-vertical-lines .dxbl-grid-table > thead tr > th:first-child {
        padding-left: 1rem !important; /* Match this value */
        text-align: left !important;
    }

.no-vertical-lines .dxbl-grid-header-cell:first-child {
    padding-left: 1rem !important;
    margin-left: 0 !important;
}

.dxbl-grid .dxbl-grid-table > thead tr > th,
.dxbl-grid .dxbl-grid-table > tbody tr > th,
.dxbl-grid .dxbl-grid-table > tbody tr > td {
    border-left: none !important;
    border-right: none !important;

}

/*Delete icon sa timeline beside piechart*/
.btn-icon-undo {
    width: 16px;
    height: 16px;
    -webkit-mask-image: url("images/icons/undo.svg");
    mask-image: url("images/icons/undo.svg");
    background-color: currentColor;
    opacity: 0.7;
}

/*log in */
.btn-start {
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center; /* vertical centering */
    height: 48px; /* or whatever fits your design */
    padding: 0 16px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
}
/*toggle css*/
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
    margin: 0;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: 0.4s;
}

    .slider:before {
        content: "";
        position: absolute;
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        border-radius: 50%;
        transition: 0.4s;
    }

input:checked + .slider {
    background-color: #28a745;
}

    input:checked + .slider:before {
        transform: translateX(20px);
    }

.slider.round {
    border-radius: 20px;
}

.remember-label {
    margin: 0;
    font-size: 14px;
}

.forgot-link {
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
}

    .forgot-link:hover {
        text-decoration: underline;
    }
.forgot-link {
    color: #32cd32; /* Bootstrap green or any green you prefer */
    font-size: 14px;
    text-decoration: none;
}

    .forgot-link:hover {
        text-decoration: underline;
        color: #218838; /* darker green on hover */
    }

    /*email icon on brigd login*/
.form-group {
    position: relative;
}

.email-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none;
}

.with-icon {
    padding-right: 36px; /* Prevent text from overlapping the icon */
}

/*password toggle*/
.password-toggle-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    cursor: pointer;
}

.with-icon {
    padding-right: 36px; /* Keep padding for both email and password fields */
}


.hover-reveal {
    display: none;
}

.hover-reveal-parent:hover .hover-reveal {
    display: contents ;
}

.activity-container {
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem; /* Added for better spacing */
}

.screenshots-row {
    /*margin-top: 1rem;*/
    padding-top: 1rem;
    /*border-top: 1px solid #eee;*/
}

.screenshot-item {
    margin-top: 1rem;
    transition: transform 0.2s;
}

.screenshot-item:hover {
    transform: translateY(-2px);

}


.responsive-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/*font of tasktitle*/
/*.custom-task-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}*/

.task-tag {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    font-size: 20px; /* or 1.5rem, depending on preference */
}
.card-shift-up {
    transform: translateY(-10px);
}

