﻿.header {
    background: rgba(26,24,49,.95);
}
.embedded-app{
    margin-top:7rem !important;
}
.custom-info-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:space-evenly;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 20px 20px 28px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

    .custom-info-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 6px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

.info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    flex-direction:row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.info-label {
    font-weight: 600;
    font-size: 14px;
    color: #555;
    white-space: nowrap;
}

.info-value {
    font-size: 14px;
    color: #333;
}

    .info-value a {
        color: #0066cc;
        text-decoration: none;
    }

        .info-value a:hover {
            text-decoration: underline;
        }

.note-section {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

    .note-section .note-text {
        color: #dc3545;
        font-weight: 600;
        font-size: 13px;
        margin: 0;
        line-height: 1.5;
    }

        .note-section .note-text strong {
            font-weight: 700;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .custom-info-card {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .custom-info-card {

        padding: 16px 16px 16px 24px;
        margin: 16px 0;
    }

        .custom-info-card::before {
            width: 5px;
        }

    .info-row {
        flex-direction: column;
        gap: 10px;
    }
    .info-label {
        font-size: 13px;
    }

    .info-value {
        font-size: 13px;
    }

    .note-section .note-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .custom-info-card {
        padding: 14px 14px 14px 20px;
    }

        .custom-info-card::before {
            width: 4px;
        }

    .info-label {
        font-size: 12px;
    }

    .info-value {
        font-size: 12px;
        word-break: break-word;
    }

    .note-section .note-text {
        font-size: 11px;
    }
}