#app {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

#left-container {
    background: black;
    width: 500px;
    flex-basis: 500px;
    display: flex;
}

#right-container {
    background: white;
    display: flex;
    flex:1;
    flex-direction: column;
}

#pulvis-img {
    object-fit: cover;
    width:100%;
}

#header {
    background: #1a2227;
    height: 100px;
    text-align: center;
    color: white;
}

#main {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
}

.text {
    line-height: 1.6;
    text-align: left;
}

.slides-intro,
.slides-note {
    line-height: 1.6;
    text-align: left;
}

.slides-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.slides-list li {
    background: #f4f7fa;
    border: 1px solid #d6dde3;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.slide-title {
    margin: 0;
    font-size: 1.15rem;
}

.slide-meta {
    margin: 0;
    color: #5b6871;
    font-size: 0.95rem;
}

.slide-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    background: #1a2227;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.slide-link:hover {
    background: #273038;
    transform: translateY(-1px);
}
