.cart-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.cart-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
}

.cart-file {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.cart-file h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cart-prestations {
    margin: 2rem 0;
}

.cart-prestations h2 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cart-prestations ul {
    list-style: none;
    padding: 0;
}

.cart-prestations li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-prestations li:last-child {
    border-bottom: none;
}

.cart-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.cart-actions .btn {
    padding: 0.75rem 1.5rem;
}

.cart-actions .btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
}

.file-preview {
    margin-top: 1rem;
    text-align: center;
}

.file-preview img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 4px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pdf-preview i {
    font-size: 3rem;
    color: #dc3545;
}

.pdf-preview p {
    margin: 0;
    color: #666;
} 