﻿.cyber-incident-search {
    display: flex;
    flex-direction: column; /* stack children vertically */
    align-items: flex-start; /* align to left instead of center */
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .cyber-incident-search .text-block {
        flex: 1;
        padding: 0 10px;
        text-align: left;
        font-family: 'AvenirNextRegular', sans-serif !important;
    }

        .cyber-incident-search .text-block p {
            margin: 0 0 10px;
            line-height: 1.3;
            font-family: 'AvenirNextRegular', sans-serif !important;
        }

    .cyber-incident-search .heavy {
        font-weight: 700;
    }

    .cyber-incident-search .size-20 {
        font-size: 20px;
    }

    .cyber-incident-search .size-12 {
        font-size: 12px;
    }

    .cyber-incident-search .color-dark {
        color: #333C4D;
    }

    .cyber-incident-search .color-red {
        color: #CA2432;
    }

.input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    height: 100%;
}

.input-with-icon {
    position: relative;
    width: 400px;
}

.person-search-input {
    width: 100%;
    border: 1px solid #22C7A9;
    background: #F9FAFC;
    padding: 2px 45px 2px 10px;
    border-radius: 5px;
    height: 40px;
    font-size: 14px;
    box-sizing: border-box;
}

.person-search-input::placeholder {
    color: #A7A9AC;
    font-family: 'AvenirNextRegular', sans-serif !important;
    font-style: italic;
}

.search-icon-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    padding: 0;
    background-image: url("/img/icon/search.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    cursor: pointer;
}

    .search-icon-btn:focus, .person-search-input:focus {
        outline: 2px solid #22C7A9;
    }

.padding-bottom {
    padding-bottom: 20px;
}
.search-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.search-result {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}


.incident-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'AvenirNextRegular', sans-serif !important;
}

.incident-cta-wrapper {
    text-align: center; /* center the inline-flex block */
    margin-bottom: 10px; /* space below CTA */
}

/* Red version */
.incident-cta--red {
    background-color: #EF0000; /* red */
}

    .incident-cta--red .incident-cta__icon {
        width: 20px;
        height: 20px;
        background-image: url("/img/icon/alert-circle.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

/* Green version */
.incident-cta--green {
    background-color: #12C800; /* green */
}

    .incident-cta--green .incident-cta__icon {
        width: 20px;
        height: 20px;
        background-image: url("/img/icon/lock-check.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

.incident-info {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    text-align: left; /* keep bullets aligned */
    margin-left: auto;
    margin-right: auto;
    font-family: 'AvenirNextRegular', sans-serif !important;
}

    .incident-info ul {
        margin-top: 8px;
        padding-left: 20px; /* indent for bullets */
        list-style-type: disc; /* dotted list */
    }

    .incident-info li {
        margin-bottom: 5px;
        font-size: 14px !important;
        font-family: 'AvenirNextRegular', sans-serif !important;
    }

.cyber-incident-search-info {
    margin-top: 20px;
    font-family: 'AvenirNextRegular', sans-serif !important;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
}

.cyber-incident-search-info__header {
    font-size: 14px;
    font-weight: bold;
    color: #C40F11;
    margin-bottom: 10px;
}

.cyber-incident-search-info__body {
    background-color: #fff;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-family: 'AvenirNextRegular', sans-serif !important;
}

    .cyber-incident-search-info__body p {
        font-family: 'AvenirNextRegular', sans-serif !important;
        font-size: 14px !important;
    }