.product-detail-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.product-title {
    color: #333;
    margin-bottom: 0.5rem;
}

.product-sku {
    color: #666;
    font-size: 0.9rem;
}

.sku-value {
    font-family: monospace;
    color: #2a6496;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-meta {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 6px;
}

.meta-item {
    display: flex;
    margin-bottom: 0.8rem;
}

.meta-label {
    font-weight: 600;
    min-width: 150px;
    color: #555;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2a6496;
}

.product-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary {
    background: #2a6496;
    color: white;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid #2a6496;
    color: #2a6496;
}

/* Delete Confirmation Styles */
.delete-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.delete-warning {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.delete-message {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #333;
}

.delete-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}