/* Style dla front-endu strony */

.custom-field-block {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #0073aa;
}

.custom-field-block.align-left {
    text-align: left;
}

.custom-field-block.align-center {
    text-align: center;
}

.custom-field-block.align-right {
    text-align: right;
}

.custom-field-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-field-value {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.custom-field-prefix,
.custom-field-suffix {
    color: #777;
    font-size: 14px;
}

.custom-field-prefix {
    margin-right: 5px;
}

.custom-field-suffix {
    margin-left: 5px;
}

.custom-field-content {
    color: #000;
    font-weight: 500;
}

/* Style responsywne */
@media (max-width: 768px) {
    .custom-field-block {
        padding: 12px;
        margin: 15px 0;
    }
    
    .custom-field-value {
        font-size: 15px;
    }
}

/* Warianty kolorystyczne - możesz je aktywować przez dodanie klas */
.custom-field-block.style-minimal {
    background: transparent;
    border: 1px solid #ddd;
    border-left-width: 4px;
}

.custom-field-block.style-bold {
    background: #0073aa;
    border-left-color: #005177;
}

.custom-field-block.style-bold .custom-field-label,
.custom-field-block.style-bold .custom-field-value,
.custom-field-block.style-bold .custom-field-content {
    color: #fff;
}

.custom-field-block.style-highlight {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.custom-field-block.style-success {
    background: #d4edda;
    border-left-color: #28a745;
}

.custom-field-block.style-info {
    background: #d1ecf1;
    border-left-color: #17a2b8;
}
