/* Reorder Module Styles */

.reorder-button-container {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: right;
}

.reorder-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.reorder-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reorder-button .material-icons {
    font-size: 20px;
}

#reorder-link {
    display: flex;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

#reorder-link:hover {
    background-color: #f8f8f8;
    transform: translateX(5px);
}

#reorder-link .link-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

#reorder-link .material-icons {
    font-size: 28px;
    color: #2fb5d2;
}

/* Responsivo */
@media (max-width: 768px) {
    .reorder-button-container {
        text-align: center;
    }
    
    .reorder-button {
        width: 100%;
        justify-content: center;
    }
}

