/**
 * Return Manager - Frontend Styles
 *
 * @package Return_Manager
 */

/* Admin Decision Summary - Customer facing */
.admin-decision-summary {
    padding: 25px;
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e1e1e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.admin-decision-summary h3,
.admin-decision-summary h4 {
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
    font-size: 20px;
}

.admin-decision-summary p {
    margin-bottom: 12px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.admin-decision-summary p strong {
    color: #333;
}

/* Button wrapper */
.button-wrapper {
    margin-top: 25px;
    text-align: left;
}

/* Custom button style */
.button.btn-custom-3 {
    padding: 12px 24px;
    background-color: #00695c;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button.btn-custom-3:hover {
    background-color: #004d40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 77, 64, 0.3);
    color: #fff;
}

/* Shipping label link */
.get-shipping-label-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: #00695c;
    text-decoration: none;
    padding: 10px 20px;
    background: #e8f5e9;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.get-shipping-label-link:hover {
    color: #004d40;
    background: #c8e6c9;
    text-decoration: none;
}

/* Status badges */
.return-status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.return-status-badge.status-approved {
    background: #d4edda;
    color: #155724;
}

.return-status-badge.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.return-status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .admin-decision-summary {
        padding: 20px;
    }
    
    .button.btn-custom-3 {
        width: 100%;
        text-align: center;
    }
    
    .get-shipping-label-link {
        display: block;
        text-align: center;
    }
}
