.page-content-wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 100px;
    white-space: nowrap;
    width: 90vw;
    overflow: visible;
    margin: auto;
}
.page-content-area{
    align-items: start;
    overflow: visible;
    width: 90vw;
    white-space: nowrap;
}

.file-browser-headline-path{
    font-size: 17px;
    font-weight: 600;
}

.documents-button{
    width: 145px;
    border-radius: 3px;
    line-height: 32px;
    background: var(--action-button-color) !important;
    border: 1px solid var(--action-button-color);
    color: white;
    cursor: pointer;
    margin-bottom: 15px;
    font-size: var(--hn-basic-text-size);
}

.ajax-popup-documents-button{
    border-radius: 3px;
    line-height: 27px;
    background: var(--action-button-color) !important;
    border: 1px solid var(--action-button-color);
    color: white;
    cursor: pointer;
    font-size: var(--hn-basic-text-size);
    width: 130px;
    margin-bottom: -13px;
    margin-left: 2px;
    margin-right: 2px;
    z-index: 2;
}

.row-action-icon-img{
    width: 30px;
}

.row-action-icon-img.view{
    width: 33px;
}
.row-action-icon-img.delete{
    width: 32px;
}

.row-icon-href-wrapper{
    display: inline-flex;
    width: 17px;
}

.paginator-previous-next-and-number-wrapper{
    display: flex;
    flex-direction: row;
    width: 100vw;
    justify-content: center;
}

.notification-page{
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.notification-page-content-wrapper{
    width: 100%;
    justify-content: center;
    align-content: center;
    background: var(--hn-header-background-color);
    box-shadow: var(--hn-popup-window-shadow);
}
.notification-page-headline{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.notification-page-headline p{
    text-wrap: initial;
    text-align: center;
    font-weight: 600;
}
.notification-page-image {
    display: flex;
    justify-content: center;
}
.request-dot{
    display: flex;
    flex-direction: row;
}
.request-start-graphic-element {
    width: 60px;
    height: 22px;
    clip-path: polygon(0% 100%, 85% 100%, 100% 80%, 100% 20%, 85% 0%, 0% 0%);
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    margin-top: 0px;
    color: white;
    text-align: center;
    position: relative; /* Důležité pro pseudo-element */
    z-index: 1; /* Zajistí, že text bude nad obrysem */
}

.request-start-graphic-element::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    clip-path: polygon(0% 100%, 85% 100%, 100% 80%, 100% 20%, 85% 0%, 0% 0%);
    background: black;
    z-index: -1;
}

.request-start-graphic-element::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(0% 100%, 85% 100%, 100% 80%, 100% 20%, 85% 0%, 0% 0%);
    background: inherit; /* Přebírá barvu z rodiče */
    z-index: -1;
}

.small-circle {
    width: 12px;
    height: 24px;
    background: yellow; /* nebo jiná barva */
    border-radius: 0px 12px 12px 0px;
    display: inline-block;
    margin-left: -20px;
    padding: -10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);

}
.small-screen-text {
    margin-left: 0;
}

#noAccessNotice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25); /* jemnější poloprůhledné pozadí */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.notice-content {
    background: #ebebf2; /* stejné jako fieldset */
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #878da1; /* jemné ohraničení v projektové barvě */
}

.notice-content strong {
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    color: #333; /* konzistentní s legend */
}

.notice-content p {
    font-size: 14px;
    color: #333;
}

.notice-content button {
    margin-top: 15px;
    padding: 8px 16px;
    background: #878da1; /* projektová šedofialová */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}

.notice-content button:hover {
    background: #6c7185; /* tmavší odstín při hoveru */
}

@media(max-width: 650px){
    .notification-page-headline p{
        font-size: var(--hn-table-headline-font-size-mobile);
    }
    .notification-page-image img{
        width: 100px;
    }
    .notification-page-headline p {
        max-width: 280px;
    }
    .notification-page-content-wrapper {
        height: 250px;
        max-width: 300px;
    }
    .notification-page-headline{
        margin-top: 5px;
    }
}
@media(min-width: 650px){
    .notification-page-headline p{
        font-size: var(--hn-notification-text-size);
    }
    .notification-page-image img{
        width: 120px;
    }
    .notification-page-headline p {
        max-width: 350px;
    }
    .notification-page-content-wrapper {
        height: 350px;
        max-width: 450px;
    }
    .notification-page-headline{
        margin-top: 15px;
    }
}


