/* Security Module Styles */

/* Badge styles */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-green {
    background-color: #006331;
    color: #fff;
}

.badge-red {
    background-color: #ed5565;
    color: #fff;
}

.badge-orange {
    background-color: #f0ad4e;
    color: #fff;
}

.badge-blue {
    background-color: #004a8f;
    color: #fff;
}

.badge-gray {
    background-color: #999;
    color: #fff;
}

.badge-pirminis {
    background-color: #004a8f;
    color: #fff;
}

.badge-kartotinis {
    background-color: #006331;
    color: #fff;
}

/* Attestation group cards */
.attestation-group-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background: #fafafa;
    transition: border-color 0.2s;
}

.attestation-group-card:hover {
    border-color: #004a8f;
}

.attestation-group-card.selected {
    border-color: #006331;
    background: #f0f8f0;
}

/* Group radio label */
.group-radio-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.group-radio-label input[type="radio"] {
    margin-top: 4px;
}

/* Document section */
.document-section {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.document-section label {
    display: block;
    margin-bottom: 5px;
}

/* Help text */
.help-text {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
    margin-bottom: 8px;
}

/* Status table badges */
.security-table .badge {
    min-width: 80px;
    text-align: center;
}

/* info page snippet box */
.snippet-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 15px 0;
    background: #fff;
}

/* Certificate verification page */
.verify-container {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    font-family: Arial, sans-serif;
}

.verify-container h1 {
    color: #004a8f;
    border-bottom: 2px solid #004a8f;
    padding-bottom: 10px;
}

.verify-container dl {
    margin: 0;
}

.verify-container dt {
    font-weight: 600;
    color: #555;
    margin-top: 10px;
}

.verify-container dd {
    margin-left: 0;
    margin-bottom: 5px;
    font-size: 16px;
}