.timeline-label:before {
    left: 124px !important;
}

.main-part div[wire\:id] {
    width: 100% !important;
    height: 100% !important;
  }

.card-glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-outlined {
    border: 2px solid #1D355732;
    border-radius: 1rem;
    text-align: center;
}

.card-outlined:hover{
    border: 2px solid #1D355796;
}

.card-dashed-outlined {
    border: 2px dashed #1D355732;
    border-radius: 1rem;
    text-align: center;
    color: #1D355732;
}

.card-dashed-outlined:hover{
    border: 2px solid #1D355796;
    color: #1D355796;
}

#register_part_non_active {
    background-color: #606C38; /* fixná modrá */
    position: relative;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
#register_part_non_active h2,h1,p{
    color: #F1FAEE;
}

#login_part_non_active {
    background-color: #606C38; /* fixná modrá */
    position: relative;
    overflow: hidden;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
#login_part_non_active h2,h1,p{
    color: #F1FAEE;
}

.btn-outlined-white {
    color: #F1FAEE;
    border: 1px solid #F1FAEE;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* hover efekt */
.btn-outlined-white:hover {
    background-color: #F1FAEE;
    color: #283618;
    border-color: #F1FAEE;
}

.btn-outlined-dark-primary {
    color: var(--bs-custom-dark-olive);
    border: 1px solid var(--bs-custom-dark-olive);;
    background-color: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

/* hover efekt */
.btn-outlined-dark-primary:hover {
    background-color: var(--bs-custom-dark-olive);;
    color: #F1FAEE;
    border-color: var(--bs-custom-dark-olive);;
}

.btn-dark-primary {
    color: #F1FAEE;
    background-color: #606C38;
    border: 1px solid #606C38;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-dark-primary:hover {
    background-color: #859457;
    border-color: #859457;
    color: #F1FAEE;
}

.btn-dark-primary:active {
    background-color: #4a5625;
    border-color: #4a5625;
}

.btn-dark-primary:disabled,
.btn-dark-primary.disabled {
    opacity: 0.65;
    pointer-events: none;
}

.btn-dark-secondary {
    color: #1D3557;
    background-color: #A8DADC;
    border: 1px solid #A8DADC;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.btn-dark-secondary:hover {
    background-color: #bee3e5;
    border-color: #bee3e5;
    color: #1D3557;
}

.btn-dark-secondary:active {
    background-color: #7db9bb;
    border-color: #7db9bb;
}

.btn-dark-secondary:disabled,
.btn-dark-secondary.disabled {
    opacity: 0.65;
    pointer-events: none;
}

.custom-btn-link{
    padding: 0.375rem 0.775rem;
    border-radius: 0.375rem;
    border: 0;
    background-color: transparent;
    color: var(--bs-custom-olive);
    text-decoration: none;
}

.custom-btn-link:hover{
    background: rgba(255, 255, 255, 0.5);
    color: #1D3557;
}

.text-underline-hover:hover{
    text-decoration: underline;
}

.custom_scrollable {
    overflow: auto;
    max-height: 90vh;
    max-width: 90vw;
    scrollbar-width: thin;
    scrollbar-color: #A8DADC transparent;
    border-radius: 1rem;
}

.custom_scrollable:hover {
    scrollbar-width: thin;
    scrollbar-color: #A8DADC transparent;
    border-radius: 1rem;
}

.custom_scrollable::-webkit-scrollbar {
    display: none;
    width: 8px; /* šírka vertikálneho scrollbar */
    height: 8px; /* výška horizontálneho scrollbar */
}

.custom_scrollable::-webkit-scrollbar-thumb {
    background-color: #A8DADC; /* farba posuvníka */
    border-radius: 10px;        /* zaoblenie */
    border: 2px solid transparent; /* efekt "gap" */
}

.custom_scrollable::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05) !important; /* farba pozadia scrollu */
    border-radius: 1rem !important;
}

.custom_vertical_scrollable {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 99%;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #A8DADC transparent;
    border-radius: 1rem;
}

.custom_vertical_scrollable:hover {
    scrollbar-width: thin;
    scrollbar-color: #A8DADC transparent;
    border-radius: 1rem;
}

.custom_vertical_scrollable::-webkit-scrollbar {
    height: 8px;
}

.custom_vertical_scrollable::-webkit-scrollbar-thumb {
    background-color: #A8DADC;
    border-radius: 10px;
}

.scroll-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.25%;
    align-items: start;
}

.file-card {
    width: 100%;
    border-radius: 1rem;
    flex-shrink: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.file-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.file-preview {
    aspect-ratio: 4/3;
    height: auto;
    width: calc(100% - 1px);
    object-fit: contain;
    background-color: #1D3557;
    border-radius: 0.75rem;
}

.drag-ghost {
    opacity: 0.6;
    border: 2px dashed #1D3557;
}

.app-header-glass {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tox-tinymce {
    width: min(94vw, 600px);
    height: 100%;
    margin: 0 auto;
}