.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
}

.button-container a {
    text-decoration: none;
}

.button-container button {
    position: relative;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #990000 0%, #ff0066 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(153, 0, 0, 0.1);
    overflow: hidden;
    min-width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.button-container button i {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.button-container button:hover {
    background: linear-gradient(135deg, #ff0066 0%, #990000 100%);
    box-shadow: 0 6px 12px rgba(153, 0, 0, 0.2);
}

.button-container button:hover i {
    transform: translateX(5px);
}

.button-container button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 4px rgba(153, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .button-container button {
        width: 100%;
        padding: 0.9rem 2rem;
    }
}

.document-list {
    list-style: none;
    padding: 0;
}

.list-item {
    align-items: center;
    margin-bottom: 15px;
    margin-left: 10px;
}

.document-name {
    flex-grow: 1;
    margin-right: 10px;
}

.label-styling {
    font-size: 18px;
    font-weight: bold;
    color: #333; 
    margin-bottom: 10px;
}

.custom-text2 {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #990000 0%, #ff0066 100%);
    -webkit-background-clip: text;
    color: transparent;
    padding-top: 25px;
}

.heading {
    margin-top: 55px; 
}

.document-list {
    margin-bottom: 50px;
    margin-right: 100px;
}