﻿.wrapper {
    min-height: 100vh;
    width: 100%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #760e26;
    border: none;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Контейнер за заглавието */
.header-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #760e26;
    padding-bottom: 15px;
}

.main-title {
    color: #760e26;
    font-weight: 700;
    margin: 0;
}

/* Бутон "Add Document" */
.add-doc-fancy {
    background: #760e26;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(118, 14, 38, 0.2);
}

    .add-doc-fancy:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(118, 14, 38, 0.4);
        background: #a11435;
    }

/* Колони */
.documents-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.doc-column {
    flex: 1;
    width: 600px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 163, 171, 0.3);
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

    .doc-column:hover {
        transform: translateY(-5px);
    }

.column-title {
    font-size: 1.5rem;
    color: #760e26;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Списък с документи */
.document-list {
    list-style: none;
    padding: 0;
}

.document-item {
    display: flex;
    width: 550px;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #760e26;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    .document-item:hover {
        background: #fff5f7;
    }

.doc-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.doc-icon {
    font-size: 1.2rem;
    color: #760e26;
}

.doc-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Мини бутон за триене */
.delete-mini-btn {
    background: none;
    border: none;
    color: #cc0000;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
}

    .delete-mini-btn:hover {
        opacity: 1;
        color: #ff0000;
    }

.empty-msg {
    color: #888;
    font-style: italic;
    text-align: center;
}

/* Мобилна версия */
@media (max-width: 768px) {
    .documents-wrapper {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



.blob {
    position: fixed;
    border-radius: 50%;
/*    filter: blur(5px);*/
    opacity: 0.6;
    z-index: 1;
    border: none;
}

    .blob.a {
        background: #760e26;
        width: 350px;
        height: 350px;
        top: 50px;
        left: -100px;
    }

    .blob.b {
        background: #c84c5c;
        width: 400px;
        height: 400px;
        top: 150px;
        right: 90px;
    }

    .blob.c {
        background: #e7a4b0;
        width: 250px;
        height: 250px;
        top: 200px;
        right: 100px;
    }

@media (max-width: 768px) {
    .blob.b {
        display:none;
    }
    .blob.c {
        display: none;
    }
}

    .documents-container {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding: 40px 80px;
    }

    .documents-content {
        width: 100%;
        display: grid;
        place-items: center;
    }

.document-list {
    width: 1000px;
    list-style: none;
}

.document {
    background-color: #c295a0;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    list-style: none;
    margin: 5px;
    padding: 6px;
}

        .document a {
            color: white;
            text-decoration: none;
            padding: 5px;
        }

.document-item a {
    color: #760e26;
    text-decoration: none;
    padding: 5px;
}



