.puf-wrap {
    display: flex;
    justify-content: flex-start;
    padding: 40px 20px;
    background: #1e1e1e;
    gap: 3rem;
    color: #f5f5f5;
    min-height: 200px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
}
.puf-card {
    width: 100%;
    max-width: 920px;
    background: #242424;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.puf-card h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
}
.puf-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.puf-input-file {
    flex: 1;
    background: transparent;
    color: #f5f5f5;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    padding: 10px;
    border-radius: 8px;
}
.puf-btn {
    background: #f1c648;
    color: #1e1e1e;
    border: none;
    padding: 14px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    position: relative;

    font-size: 16px;
}
.puf-btn.loading span {
    visibility: hidden;
    pointer-events: none;
}
.puf-btn svg {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.puf-btn.loading svg {
    display: block;
}
.puf-btn:hover {
    filter: brightness(0.95);
}
.puf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.puf-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent);
}
.puf-link {
    color: #f5f5f5;
    text-decoration: none;
}
.puf-del-btn {
    background: #ff6b6b;
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
}
@media (max-width: 600px) {
    .puf-form {
        flex-direction: column;
    }
    .puf-btn {
        width: 100%;
    }
    .puf-del-btn {
        width: 100%;
        margin-top: 5px;
    }
}
input#log,
.puf-card,
.puf-del-btn,
button.puf-btn {
    font-family: Museo7;
    font-style: normal;
    font-weight: 600;
    color: #fff;
}
.puf-wrap p,
.puf-wrap a {
    font-family: Museo7;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.02em;
}
.puf-wrap h3,
.puf-wrap h2 {
    font-family: Museo;
    color: #fff;
    margin-bottom: 1.5em;
    font-size: 36px;
}
.puf-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.puf-upload-form {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.puf-logout-form {
    flex-shrink: 0;
}

.logout-btn {
    background: #ff6b6b;
}
.exit button.puf-btn {
    display: flex;
    justify-content: flex-start;
    padding: 16px 20px;
    /* background: #1e1e1e; */
    gap: 1rem;
    color: #f5f5f5;
    max-height: 46px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
}
.puf-card form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}

.puf-error {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 20px;
}
