.edd-custom-orders-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


.edd-custom-order-item {
    background: #fafafa;
    border: 2px solid #eee;
    border-radius: 6px;
    margin-bottom: 20px;
    transition: border-color 0.2s ease;
}

.edd-custom-order-item:hover {
    border-color: #f7931a;
}

.edd-order-header {
    background: #000;
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px 4px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.edd-order-number {
    font-weight: 600;
    font-size: 16px;
}

.edd-order-date {
    font-size: 14px;
    color: #f7931a;
}

.edd-order-products {
    padding: 20px;
}

.edd-product-item {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.edd-product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.edd-product-title {
    color: #000;
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
}

.edd-product-links {
    display: block;
}

.edd-content-item {
    margin-bottom: 15px;
}

.edd-content-item:last-child {
    margin-bottom: 0;
}

.edd-content-link {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 10px 16px;
    border: 2px solid #000;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.edd-content-link:hover {
    background: #f7931a;
    color: #fff;
    border-color: #f7931a;
    text-decoration: none;
}

.edd-link-icon {
    margin-right: 6px;
    font-size: 14px;
}

.edd-link-text {
    font-size: 14px;
}

.edd-no-content {
    color: #666;
    font-style: italic;
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.edd-custom-orders-notice,
.edd-custom-orders-error,
.edd-custom-orders-empty {
    text-align: center;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    border: 2px solid;
}

.edd-custom-orders-notice {
    background: #f8f8f8;
    color: #333;
    border-color: #ddd;
}

.edd-custom-orders-notice a {
    color: #f7931a;
    text-decoration: underline;
    font-weight: 600;
}

.edd-custom-orders-notice a:hover {
    color: #000;
    text-decoration: none;
}

.edd-custom-orders-error {
    background: #fff;
    color: #d32f2f;
    border-color: #d32f2f;
}

.edd-custom-orders-empty {
    background: #fff;
    color: #666;
    border-color: #f7931a;
}

/* Responsive */
@media (max-width: 768px) {
    .edd-custom-orders-container {
        padding: 0 15px;
    }
    
    .edd-order-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .edd-product-links {
        flex-direction: column;
    }
    
    .edd-content-link {
        justify-content: center;
    }
}