/**
 * Frontend Styles - PRO Cotizador MERCH
 */

/* ============================================================
   PCM LOGO UPLOAD - Bloque de impresión de logo en producto
   ============================================================ */

.pcm-logo-upload-wrap {
    margin: 16px 0 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px 18px;
    background: #fafafa;
}

/* --- Toggle row --- */
.pcm-logo-toggle-row {
    display: flex;
    align-items: center;
}

.pcm-logo-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #1d2327;
    user-select: none;
}

/* Track del toggle switch */
.pcm-logo-toggle-track {
    display: inline-block;
    width: 44px;
    height: 24px;
    background: #ccc;
    border-radius: 12px;
    position: relative;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.pcm-logo-toggle-track::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: left 0.25s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* Estado activo del toggle — controlado via JS con clase .pcm-toggle-on */
.pcm-logo-toggle-track.pcm-toggle-on {
    background: #e63946;
}

.pcm-logo-toggle-track.pcm-toggle-on::after {
    left: 23px;
}

/* --- Área de upload --- */
.pcm-logo-upload-area {
    margin-top: 14px;
}

.pcm-logo-dropzone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 24px 16px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.pcm-logo-dropzone.pcm-drag-over {
    border-color: #e63946;
    background: #fff5f5;
}

.pcm-upload-icon {
    color: #aaa;
    margin-bottom: 8px;
}

.pcm-dropzone-text {
    font-size: 14px;
    color: #555;
    margin: 0 0 4px;
}

.pcm-dropzone-btn {
    background: none;
    border: none;
    color: #e63946;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    text-decoration: underline;
}

.pcm-dropzone-hint {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

/* --- Preview --- */
.pcm-logo-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.pcm-logo-preview-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f5f5f5;
}

.pcm-logo-preview-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pcm-logo-preview-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    word-break: break-all;
}

.pcm-logo-remove-btn {
    background: none;
    border: none;
    color: #e63946;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-align: left;
    font-weight: 600;
}

/* --- Spinner de carga --- */
.pcm-logo-uploading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    font-size: 14px;
    color: #555;
}

.pcm-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid #e0e0e0;
    border-top-color: #e63946;
    border-radius: 50%;
    animation: pcm-spin 0.7s linear infinite;
}

@keyframes pcm-spin {
    to { transform: rotate(360deg); }
}

/* --- Mensaje de error --- */
.pcm-logo-error {
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff0f0;
    border-left: 3px solid #e63946;
    color: #c0392b;
    font-size: 13px;
    border-radius: 4px;
}

/* --- Logo en sidebar del cotizador --- */
.pcm-item-logo {
    font-size: 12px;
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pcm-logo-thumb {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: #f5f5f5;
    vertical-align: middle;
}

.pcm-remove-logo-btn {
    background: none;
    border: none;
    color: #e63946;
    font-size: 14px;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
    font-weight: 700;
}

/* Cotizador Wrapper */
.pcm-cotizador-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.pcm-cotizador-header {
    text-align: center;
    margin-bottom: 40px;
}

.pcm-cotizador-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1d2327;
}

.pcm-subtitle {
    color: #646970;
    font-size: 16px;
}

/* Empty State */
.pcm-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pcm-empty-icon {
    margin-bottom: 20px;
}

.pcm-empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1d2327;
}

.pcm-empty-state p {
    color: #646970;
    margin-bottom: 30px;
}

/* Cotizador Content */
.pcm-cotizador-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

@media (max-width: 968px) {
    .pcm-cotizador-content {
        grid-template-columns: 1fr;
    }
}

.pcm-cart-section,
.pcm-form-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pcm-cart-section h3,
.pcm-form-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #1d2327;
}

/* Products Table */
.pcm-products-table {
    overflow-x: auto;
}

.pcm-products-table table {
    width: 100%;
    border-collapse: collapse;
}

.pcm-products-table th,
.pcm-products-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.pcm-products-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: #646970;
    font-size: 14px;
}

.pcm-product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pcm-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.pcm-product-name strong {
    color: #1d2327;
    font-size: 15px;
}

.pcm-product-sku {
    color: #646970;
    font-size: 13px;
}

/* Quantity Control */
.pcm-quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pcm-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #dcdcde;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcm-qty-btn:hover {
    background: #f0f0f0;
}

.pcm-qty-input {
    width: 60px;
    height: 30px;
    text-align: center;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 14px;
}

.pcm-remove-btn {
    background: transparent;
    border: none;
    color: #d63638;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.pcm-remove-btn:hover {
    color: #b52727;
}

/* Cart Actions */
.pcm-cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* Form */
.pcm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pcm-form-group {
    display: flex;
    flex-direction: column;
}

.pcm-form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #1d2327;
    font-size: 14px;
}

.pcm-form-group .required {
    color: #d63638;
}

.pcm-form-group input,
.pcm-form-group textarea {
    padding: 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.pcm-form-group input:focus,
.pcm-form-group textarea:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.pcm-form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 10px;
}

.pcm-form-messages {
    margin-top: 20px;
}

.pcm-form-messages .success {
    padding: 15px;
    background: #00a32a;
    color: white;
    border-radius: 4px;
}

.pcm-form-messages .error {
    padding: 15px;
    background: #d63638;
    color: white;
    border-radius: 4px;
}

/* Buttons */
.pcm-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pcm-btn-primary {
    background: #2271b1;
    color: white;
}

.pcm-btn-primary:hover {
    background: #135e96;
    color: white;
}

.pcm-btn-secondary {
    background: #f0f0f0;
    color: #1d2327;
}

.pcm-btn-secondary:hover {
    background: #dcdcde;
}

/* Price Display */
.pcm-no-price {
    color: #646970;
    font-style: italic;
}

/* Loading */
.pcm-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Ocultar mensajes de WooCommerce "out of stock" */
.woocommerce div.product p.stock.out-of-stock,
.woocommerce div.product .out-of-stock {
    display: none !important;
}

/* Forzar que el botón siempre sea visible */
.woocommerce div.product form.cart {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Estilo para el mensaje de disponibilidad personalizado */
.woocommerce div.product p.stock.available-on-backorder {
    color: #28a745;
    font-weight: 600;
}

.woocommerce div.product p.stock.available-on-backorder::before {
    content: "✓ ";
    font-weight: bold;
}

/* Productos Variables - SIEMPRE mostrar selector de variaciones */
.woocommerce div.product.product-type-variable form.cart .variations {
    display: table !important;
    margin-bottom: 20px;
    width: 100%;
}

.woocommerce div.product form.cart .variations tr {
    display: table-row;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
    display: table-cell;
    padding: 10px 0;
    vertical-align: middle;
}

.woocommerce div.product form.cart .variations label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.woocommerce div.product form.cart .variations select {
    min-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Wrapper de variación única - mostrar siempre */
.woocommerce div.product form.cart .single_variation_wrap {
    display: block !important;
    margin-top: 20px;
}

/* Botón de agregar al cotizador en productos variables */
.woocommerce div.product form.cart .single_variation_wrap .single_add_to_cart_button {
    display: inline-block !important;
    margin-top: 10px;
}

/* Precio de la variación seleccionada */
.woocommerce div.product .single_variation .price {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* Reset clear button */
.woocommerce div.product form.cart .reset_variations {
    margin-left: 10px;
    font-size: 13px;
}

/* ========================================
   Página Mi Cotización - Diseño Profesional
   ======================================== */

.pcm-cotizador-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.pcm-cotizador-header {
    text-align: center;
    margin-bottom: 50px;
}

.pcm-cotizador-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}

.pcm-cotizador-header .pcm-subtitle {
    font-size: 16px;
    color: #646970;
    margin: 0;
}

/* Estado Vacío */
.pcm-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #fafafa;
    border-radius: 16px;
    border: 2px dashed #ddd;
}

.pcm-empty-icon {
    margin-bottom: 24px;
}

.pcm-empty-state h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 12px 0;
}

.pcm-empty-state p {
    font-size: 16px;
    color: #646970;
    margin: 0 0 24px 0;
}

/* Layout de Contenido */
.pcm-cotizador-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .pcm-cotizador-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Secciones */
.pcm-cart-section,
.pcm-form-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e8e8e8;
}

.pcm-cart-section h3,
.pcm-form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

/* Tabla de Productos - Diseño Moderno */
.pcm-products-table {
    margin-bottom: 24px;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.pcm-products-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
}

.pcm-products-table thead {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.pcm-products-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: #646970;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e0e0e0;
}

.pcm-products-table thead th:first-child {
    border-top-left-radius: 12px;
}

.pcm-products-table thead th:last-child {
    border-top-right-radius: 12px;
}

.pcm-products-table tbody tr {
    transition: all 0.2s ease;
}

.pcm-products-table tbody tr:hover {
    background: #fef8e7;
}

.pcm-products-table tbody td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.pcm-products-table tbody tr:last-child td {
    border-bottom: none;
}

/* Producto Info */
.pcm-product-info {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.pcm-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    flex-shrink: 0;
}

.pcm-product-name {
    flex: 1;
}

.pcm-product-name strong {
    font-size: 15px;
    font-weight: 600;
    color: #1d2327;
    display: block;
    margin-bottom: 4px;
}

.pcm-product-name small {
    font-size: 12px;
    color: #646970;
    display: block;
}

.pcm-product-name .pcm-variation-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: #fef8e7;
    color: #957319;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* SKU */
.pcm-product-sku {
    font-family: monospace;
    font-size: 13px;
    color: #646970;
    font-weight: 500;
}

/* Botón Eliminar */
.pcm-product-remove {
    text-align: center !important;
}

.pcm-remove-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fee;
    color: #d63638;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pcm-remove-btn:hover {
    background: #d63638;
    color: white;
    transform: scale(1.1);
}

/* Acciones del Carrito */
.pcm-cart-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 2px solid #f0f0f0;
}

/* Botones */
.pcm-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.pcm-btn-primary {
    background: #957319;
    color: white;
    box-shadow: 0 4px 12px rgba(149, 115, 25, 0.2);
}

.pcm-btn-primary:hover {
    background: #7a5e14;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(149, 115, 25, 0.3);
}

.pcm-btn-secondary {
    background: white;
    color: #646970;
    border: 2px solid #e0e0e0;
}

.pcm-btn-secondary:hover {
    background: #fafafa;
    border-color: #957319;
    color: #957319;
}

/* Formulario */
.pcm-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pcm-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pcm-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
}

.pcm-form-group .required {
    color: #d63638;
}

.pcm-form-group input,
.pcm-form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.pcm-form-group input:focus,
.pcm-form-group textarea:focus {
    outline: none;
    border-color: #957319;
    box-shadow: 0 0 0 3px rgba(149, 115, 25, 0.1);
}

.pcm-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Acciones del Formulario */
.pcm-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.pcm-form-actions .pcm-btn {
    flex: 1;
}

.pcm-form-messages {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    display: none;
}

.pcm-form-messages.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pcm-form-messages.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .pcm-cotizador-wrapper {
        padding: 0 16px;
        margin: 24px auto;
    }
    
    .pcm-cotizador-header h2 {
        font-size: 28px;
    }
    
    .pcm-cart-section,
    .pcm-form-section {
        padding: 24px 20px;
    }
    
    .pcm-products-table {
        font-size: 14px;
    }
    
    .pcm-products-table thead th {
        padding: 12px 16px;
        font-size: 11px;
    }
    
    .pcm-products-table tbody td {
        padding: 16px 12px;
    }
    
    .pcm-product-thumb {
        width: 50px;
        height: 50px;
    }
    
    .pcm-cart-actions,
    .pcm-form-actions {
        flex-direction: column;
    }
    
    .pcm-cart-actions .pcm-btn,
    .pcm-form-actions .pcm-btn {
        width: 100%;
    }
}

/* Quantity Input - Estilo Moderno con Botones +/- */
.woocommerce div.product form.cart div.quantity,
.woocommerce-page div.product form.cart div.quantity,
div.product form.cart div.quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 2px solid #ddd !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: white !important;
    margin-right: 15px !important;
    vertical-align: middle !important;
}

.woocommerce div.product form.cart div.quantity input.qty,
.woocommerce-page div.product form.cart div.quantity input.qty,
div.product form.cart div.quantity input.qty,
.woocommerce div.product form.cart div.quantity input[type="number"],
div.product form.cart div.quantity input[type="number"] {
    width: 60px !important;
    height: 46px !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce div.product form.cart div.quantity input.qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart div.quantity input.qty::-webkit-inner-spin-button,
div.product form.cart div.quantity input[type="number"]::-webkit-outer-spin-button,
div.product form.cart div.quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.woocommerce div.product form.cart div.quantity input.qty:focus,
div.product form.cart div.quantity input[type="number"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Botones +/- - Con mayor especificidad */
.woocommerce div.product form.cart div.quantity .pcm-qty-btn,
.woocommerce-page div.product form.cart div.quantity .pcm-qty-btn,
div.product form.cart div.quantity .pcm-qty-btn,
button.pcm-qty-btn {
    width: 46px !important;
    height: 46px !important;
    border: none !important;
    background: #f5f5f5 !important;
    color: #333 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    user-select: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    line-height: 1 !important;
}

.woocommerce div.product form.cart div.quantity .pcm-qty-btn:hover,
button.pcm-qty-btn:hover {
    background: #957319 !important;
    color: white !important;
}

.woocommerce div.product form.cart div.quantity .pcm-qty-btn:active,
button.pcm-qty-btn:active {
    transform: scale(0.95) !important;
}

.woocommerce div.product form.cart div.quantity .pcm-qty-btn.minus,
button.pcm-qty-btn.minus {
    border-right: 1px solid #ddd !important;
    order: 1 !important;
}

div.product form.cart div.quantity input.qty,
div.product form.cart div.quantity input[type="number"] {
    order: 2 !important;
}

.woocommerce div.product form.cart div.quantity .pcm-qty-btn.plus,
button.pcm-qty-btn.plus {
    border-left: 1px solid #ddd !important;
    order: 3 !important;
}

.woocommerce div.product form.cart div.quantity .pcm-qty-btn:disabled,
button.pcm-qty-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    background: #f5f5f5 !important;
    color: #999 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce div.product form.cart div.quantity,
    div.product form.cart div.quantity {
        width: 100% !important;
        margin-bottom: 15px !important;
        margin-right: 0 !important;
    }
    
    .woocommerce div.product form.cart div.quantity .pcm-qty-btn,
    button.pcm-qty-btn {
        width: 50px !important;
    }
    
    .woocommerce div.product form.cart div.quantity input.qty,
    div.product form.cart div.quantity input[type="number"] {
        flex: 1 !important;
    }
}

/* ---- Logo en tabla del cotizador ---- */
.pcm-product-logo {
    min-width: 90px;
}

.pcm-logo-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.pcm-logo-table-thumb {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
    display: block;
}

.pcm-logo-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 3px;
}

.pcm-logo-file-link {
    font-size: 12px;
    color: #0073aa;
    word-break: break-all;
}

.pcm-no-logo {
    color: #bbb;
    font-size: 14px;
}
