﻿.customer-product-request {
    width: 100%;
    max-width: 820px;
    margin: 2rem auto 0;
    padding: 0;
}

.customer-product-request-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.customer-product-request-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient( 135deg, rgba(14, 70, 163, 0.08), rgba(14, 70, 163, 0.02) );
    border-bottom: 1px solid #e5e7eb;
}

.customer-product-request-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background-color: #0e46a3;
    color: #fff;
    font-size: 1.25rem;
}

.customer-product-request-title {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}

.customer-product-request-description {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.customer-product-request-body {
    padding: 1.5rem;
}

.customer-product-request .form-label {
    margin-bottom: 0.45rem;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
}

.customer-product-request .form-control,
.customer-product-request .form-select {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    color: #111827;
    background-color: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-product-request textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.customer-product-request .form-control:focus,
.customer-product-request .form-select:focus {
    border-color: #0e46a3;
    box-shadow: 0 0 0 0.2rem rgba(14, 70, 163, 0.12);
}

.customer-product-request .field-validation-error {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #dc3545;
}

.customer-product-request .input-validation-error {
    border-color: #dc3545;
}

.customer-product-request-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

.customer-product-request-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
    min-height: 46px;
    padding: 0.7rem 1.4rem;
    border: 0;
    border-radius: 10px;
    background-color: #0e46a3;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

    .customer-product-request-submit:hover {
        background-color: #0b3a88;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(14, 70, 163, 0.22);
    }

    .customer-product-request-submit:disabled {
        cursor: not-allowed;
        opacity: 0.65;
        transform: none;
        box-shadow: none;
    }

.customer-product-request .select2-container {
    width: 100% !important;
}

.customer-product-request
.select2-container--bootstrap-5
.select2-selection {
    min-height: 46px;
    border-radius: 10px;
    border-color: #d1d5db;
}

.customer-product-request
.select2-container--bootstrap-5
.select2-selection--single {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

@media (max-width: 767.98px) {
    .customer-product-request {
        margin-top: 1.25rem;
    }

    .customer-product-request-card {
        border-radius: 14px;
    }

    .customer-product-request-header {
        padding: 1.15rem;
    }

    .customer-product-request-body {
        padding: 1.15rem;
    }

    .customer-product-request-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .customer-product-request-actions {
        display: block;
    }

    .customer-product-request-submit {
        width: 100%;
    }
}
