/* ====================================
   SHOW/DETAIL LAPU STILI
   ==================================== */

@import url('style.css');

/* Detail sadaļas */
dl {
    margin-bottom: 20px;
}

dt {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 12px;
    margin-bottom: 5px;
    font-size: 13px;
}

dd {
    margin-left: 0;
    margin-bottom: 12px;
    color: #5a6c7d;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #3498db;
}

/* Info card */
.info-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 3px solid #3498db;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

/* QR Code */
.qr-code-section {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 6px;
    margin: 20px 0;
}

.qr-code-section img {
    max-width: 250px;
    border: 2px solid #e8ecef;
    border-radius: 4px;
}

/* Actions */
.actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e8ecef;
    align-items: center; /* PIEVIENOTS */
}

/* Formas actions konteinerā */
.actions form,
.actions .inline-block {
    margin: 0;
    display: inline-block;
}

/* Pogas actions konteinerā */
.actions .btn {
    margin: 0;
}

@media (max-width: 768px) {
    .actions {
        flex-direction: column;
    }
    
    .actions .btn {
        width: 100%;
    }
}