/* Petits boutons de contrôle pour la visualisation */
.small-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 4px;
    z-index: 10;
}
.small-controls button {
    font-size: 10px;
    padding: 2px 6px;
    height: 22px;
    min-width: auto;
}
.small-controls .mode-btn {
    font-size: 9px;
    padding: 2px 5px;
    height: 20px;
}
.small-controls .reset-btn {
    font-size: 9px;
    padding: 2px 5px;
    height: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #333;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    text-align: center;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#logo {
    max-height: 80px;
    max-width: 200px;
}

header h1 {
    font-size: 2.5em;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Onglets */
.tabs {
    display: flex;
    background: #f5f5f5;
    border-bottom: 3px solid #667eea;
}

.tab-button {
    flex: 1;
    padding: 20px;
    background: transparent;
    border: none;
    font-size: 1.2em;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    background: #e0e0e0;
}

.tab-button.active {
    background: white;
    color: #667eea;
    border-bottom: 4px solid #667eea;
}

/* Contenu des onglets */
.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Formulaire */
.form-section h2 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.form-group {
    margin-bottom: 25px;
}

/* Nouvelles sections de formulaire */
.form-section-block {
    background: #f8f9ff;
    border: 2px solid #e0e5f5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.form-section-block.optional-section {
    background: #fafafa;
    border-color: #e0e0e0;
}

.section-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.optional-badge {
    font-size: 0.7em;
    font-weight: 500;
    color: #888;
    background: #e0e0e0;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
}

.mode-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mode-label {
    font-size: 0.9em;
    color: #666;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

/* Style global pour tous les inputs number du formulaire */
.form-section-block input[type="number"],
.form-group input[type="number"],
.form-group select,
#pixels-input-group input,
#pitch-input-group input,
#power-group-single input,
#power-group-dual input,
#flight-group-single input,
#flight-group-dual input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05em;
    transition: all 0.3s ease;
    background: #fafafa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-section-block input[type="number"]:hover,
.form-group input[type="number"]:hover,
.form-group select:hover,
#pixels-input-group input:hover,
#pitch-input-group input:hover,
#power-group-single input:hover,
#power-group-dual input:hover,
#flight-group-single input:hover,
#flight-group-dual input:hover {
    border-color: #667eea;
    background: white;
}

.form-section-block input[type="number"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
#pixels-input-group input:focus,
#pitch-input-group input:focus,
#power-group-single input:focus,
#power-group-dual input:focus,
#flight-group-single input:focus,
#flight-group-dual input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #888;
    font-size: 0.9em;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.priority-group {
    margin-top: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.conversion-info {
    margin-top: 10px;
    padding: 10px;
    background: #f0f4ff;
    border-radius: 5px;
    border-left: 3px solid #667eea;
    display: none;
}

.conversion-info p {
    margin: 0;
    font-size: 0.95em;
}

.dimension-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dimension-inputs input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    background: #fafafa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dimension-inputs input:hover {
    border-color: #667eea;
    background: white;
}

.dimension-inputs input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.dimension-inputs span {
    font-size: 1.5em;
    font-weight: bold;
    color: #667eea;
}

/* Informations processeur */
.processor-info {
    margin-top: 15px;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    display: none;
}

.processor-info.visible {
    display: block;
}

.processor-info img {
    max-width: 200px;
    margin: 10px 0;
    border-radius: 5px;
}

.processor-specs {
    margin-top: 10px;
}

.processor-specs p {
    margin: 5px 0;
    font-size: 0.95em;
}

.processor-specs strong {
    color: #667eea;
}

/* Bouton calculer */
.calculate-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.calculate-btn:active {
    transform: translateY(0);
}

/* Bouton documentation processeur */
.doc-btn {
    padding: 8px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 40px;
}

.doc-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Gros boutons pour format de dalle */
.panel-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    justify-content: center;
}

.panel-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 120px;
}

.panel-btn:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.panel-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.panel-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-icon {
    border: 2px solid currentColor;
    transition: all 0.3s ease;
    background: rgba(102, 126, 234, 0.1);
}

.panel-btn.active .panel-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.panel-icon.square {
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.panel-icon.rectangle {
    width: 24px;
    height: 42px;
    border-radius: 3px;
}

.panel-btn span {
    font-weight: 600;
    font-size: 11px;
}

/* Petits boutons pour mode de saisie */
.mode-buttons-small {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.mode-input-btn-small {
    padding: 8px 20px;
    border: 2px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
}

.mode-input-btn-small:hover {
    border-color: #667eea;
}

.mode-input-btn-small.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.input-label {
    font-size: 13px;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.dual-input-section {
    padding: 10px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.priority-group {
    margin-top: 15px;
    padding: 10px;
    background: #f0f4ff;
    border-radius: 8px;
}

.priority-group label {
    font-size: 13px;
    color: #555;
}

.priority-group select {
    margin-top: 5px;
}

/* Inputs pour dalles par flight doubles */
.flight-inputs {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.flight-input-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flight-label {
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.flight-input-item input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    background: #fafafa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.flight-input-item input:hover {
    border-color: #667eea;
    background: white;
}

.flight-input-item input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

/* Section résultats */
.results-section h2 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.canvas-container {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    position: relative;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    border: 2px solid #e0e0e0;
}

.canvas-controls {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.toggle-btn {
    padding: 10px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: #51cf66;
}

.mode-btn {
    padding: 10px 20px;
    background: #ddd;
    color: #333;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

.mode-btn:hover {
    background: #ccc;
}

.mode-btn.active {
    background: #667eea;
    color: white;
}

.reset-btn {
    padding: 10px 20px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 10px;
}

.reset-btn:hover {
    background: #ff5252;
}

.manual-controls {
    width: 100%;
    padding: 15px;
    background: #f0f4ff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.port-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.port-selector label {
    font-weight: 600;
    color: #667eea;
}

.port-selector select {
    padding: 8px 12px;
    border: 2px solid #667eea;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.port-capacity {
    flex: 1;
}

.capacity-bar {
    height: 25px;
    background: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5px;
}

.capacity-fill {
    height: 100%;
    transition: width 0.3s;
}

.capacity-text {
    font-size: 0.9em;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ok-capacity {
    border: 2px solid #51cf66;
}

.warning-capacity {
    border: 2px solid #ffc107;
}

.over-capacity {
    border: 2px solid #ff6b6b;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.capacity-error {
    color: #ff6b6b;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.manual-instruction {
    text-align: center;
    color: #667eea;
    font-weight: 600;
    margin: 0;
}

#wall-canvas {
    max-width: 100%;
    border-radius: 5px;
}

.results-details {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 10px;
    border: 3px solid #667eea;
}

.result-item {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.result-item h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.result-item p {
    margin: 5px 0;
    font-size: 1em;
    color: #555;
}

.result-value {
    font-weight: bold;
    color: #333;
    font-size: 1.1em;
}

.result-primary {
    font-weight: bold;
    color: #667eea;
    font-size: 2em;
    margin: 10px 0;
    line-height: 1.2;
}

.result-secondary {
    font-size: 0.9em;
    color: #666;
    margin: 5px 0;
}

.result-warning {
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px 0;
}

.result-success {
    color: #51cf66;
    font-weight: bold;
    font-size: 1.1em;
    margin: 10px 0;
}

.result-tip {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 10px 15px;
    margin: 10px 0;
    color: #856404;
    font-size: 0.95em;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.port-high-usage .port-label {
    color: #ff6b6b;
    font-weight: bold;
}

.port-high-usage .port-usage {
    color: #ff6b6b;
    font-weight: bold;
}

.warning {
    background: #fff3cd;
    border-left-color: #ffc107;
    color: #856404;
}

.error {
    background: #f8d7da;
    border-left-color: #dc3545;
    color: #721c24;
}

.ports-detail {
    margin-top: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.ports-detail h4 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1em;
}

.port-item {
    display: grid;
    grid-template-columns: 24px 70px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 12px;
    padding: 8px;
    background: #f8f9ff;
    border-radius: 8px;
    border: 1px solid #e8ecff;
}

.port-color {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    grid-row: span 2;
}

.port-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9em;
}

.port-usage {
    font-size: 0.85em;
    color: #666;
    text-align: right;
}

.port-bar {
    grid-column: 2 / 4;
    height: 16px;
    background: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.port-bar-fill {
    height: 100%;
    transition: width 0.3s;
    border-radius: 8px;
}

.port-high-usage {
    background: #fff5f5;
    border-color: #ffcccc;
}

/* Coming soon */
.coming-soon {
    text-align: center;
    padding: 100px 20px;
    color: #888;
}

.coming-soon h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE MOBILE
   ============================================ */

/* Tablette */
@media (max-width: 1024px) {
    .tab-content.active {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        order: 1;
    }
    
    .results-section {
        order: 2;
    }
    
    .canvas-container {
        order: 3;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        border-radius: 10px;
    }
    
    header {
        padding: 15px;
    }
    
    #logo {
        max-height: 50px;
        max-width: 120px;
    }

    header h1 {
        font-size: 1.4em;
    }

    .tab-button {
        font-size: 0.9em;
        padding: 12px 10px;
    }

    .tab-content {
        padding: 15px;
    }
    
    .form-section h2 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 0.9em;
    }

    .dimension-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .dimension-inputs span {
        display: none;
    }
    
    .dimension-inputs input {
        width: 100%;
    }
    
    /* Boutons dalles responsive - côte à côte */
    .panel-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .panel-btn {
        padding: 8px;
        min-height: 50px;
        flex: 1;
    }
    
    .panel-icon-container {
        width: 30px;
        height: 30px;
    }
    
    .panel-btn span {
        font-size: 0.75em;
    }
    
    /* Boutons mode saisie */
    .mode-buttons-small {
        gap: 8px;
    }
    
    .mode-input-btn-small {
        padding: 8px 16px;
        font-size: 0.85em;
    }
    
    /* Inputs */
    input[type="number"],
    select {
        font-size: 16px !important; /* Empêche le zoom iOS */
        padding: 12px;
    }
    
    /* Bouton calculer */
    .calculate-btn {
        padding: 15px;
        font-size: 1.1em;
    }
    
    /* Canvas container */
    .canvas-container {
        margin: 0 -15px;
        border-radius: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    #wall-canvas {
        min-width: 100%;
        touch-action: pan-x pan-y pinch-zoom;
    }
    
    /* Contrôles canvas */
    .small-controls {
        flex-wrap: wrap;
        gap: 3px;
        left: 5px;
        bottom: 5px;
    }
    
    .small-controls button {
        font-size: 9px;
        padding: 4px 6px;
        height: 28px;
    }
    
    /* Résultats */
    .results-details {
        padding: 15px;
    }
    
    .result-card {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .result-card h3 {
        font-size: 1em;
    }
    
    .result-card p {
        font-size: 0.9em;
    }
    
    /* Ports détails */
    .port-item {
        grid-template-columns: 15px 50px 1fr;
        gap: 4px;
        font-size: 0.8em;
    }
    
    .port-usage {
        display: block;
        font-size: 0.75em;
        grid-column: 2 / 4;
        margin-top: -2px;
    }
    
    .port-bar {
        grid-column: 2 / 4;
    }
    
    /* Flight inputs */
    .flight-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .flight-input-item {
        width: 100%;
    }
    
    /* Priority group */
    .priority-group select {
        width: 100%;
    }
    
    /* Info conversion */
    .conversion-info {
        font-size: 0.85em;
    }
    
    .conversion-info p {
        margin: 3px 0;
    }
}

/* Très petit mobile */
@media (max-width: 400px) {
    body {
        padding: 5px;
    }
    
    header {
        padding: 10px;
    }
    
    #logo {
        max-height: 40px;
    }
    
    header h1 {
        font-size: 1.2em;
    }
    
    .tab-button {
        font-size: 0.8em;
        padding: 10px 8px;
    }
    
    .tab-content {
        padding: 10px;
    }
    
    .panel-btn {
        padding: 8px;
        min-height: 50px;
    }
    
    .calculate-btn {
        padding: 12px;
        font-size: 1em;
    }
}

/* Zoom controls pour canvas */
.canvas-zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.zoom-btn:hover {
    background: rgba(118, 75, 162, 0.9);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

/* Canvas wrapper pour zoom */
.canvas-wrapper {
    position: relative;
    overflow: hidden;
    touch-action: none;
}

.canvas-wrapper canvas {
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

/* ===== STYLES CÂBLAGE ===== */
.cables-detail {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.cables-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.cables-separator {
    width: 80%;
    height: 2px;
    background: #333;
    margin: 5px auto;
}

.cable-item {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 130px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    max-width: 160px;
}

.cable-first-power {
    background: linear-gradient(135deg, #ffd70022 0%, #ffa50022 100%);
    border: 2px solid #ffa500;
}

.cable-power {
    background: linear-gradient(135deg, #ff6b6b22 0%, #ee5a2422 100%);
    border: 2px solid #ff6b6b;
}

.cable-data-long {
    background: linear-gradient(135deg, #667eea22 0%, #764ba222 100%);
    border: 2px solid #667eea;
}

.cable-data-short {
    background: linear-gradient(135deg, #43e97b22 0%, #38f9d722 100%);
    border: 2px solid #43e97b;
}

.cable-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.cable-number {
    font-size: 24px;
    font-weight: bold;
}

.cable-label {
    font-size: 12px;
    color: #666;
}

.cable-sublabel {
    font-size: 10px;
    color: #888;
    margin-top: 4px;
}

/* Desktop: affichage en ligne */
@media (min-width: 600px) {
    .cables-detail {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    
    .cables-row {
        display: contents;
    }
    
    .cables-separator {
        width: 2px;
        height: 60px;
        margin: 0 4px;
    }
}
