﻿/* Photo Upload Warning Modal - Desktop */
div#content #finish-photo-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    max-width: 90%;
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
    padding: 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

    div#content #finish-photo-div .finish-header {
        position: relative;
        height: 25px;
    }

        div#content #finish-photo-div .finish-header .close-icon {
            position: absolute;
            right: 0;
            top: 0;
            background-image: url('/microsites/CNR/global/images/close_grey.png');
            cursor: pointer;
        }

            div#content #finish-photo-div .finish-header .close-icon:hover {
                background-image: url('/microsites/CNR/global/images/close_blue.png');
            }

    div#content #finish-photo-div p.street-title {
        margin: 5px 0 15px 0;
        text-align: center;
    }

    div#content #finish-photo-div p.thank-you-content {
        margin: -10px 0 20px 0;
        font-size: 13px;
        text-align: center;
    }

    div#content #finish-photo-div .result-button {
        text-align: center;
        margin-bottom: 10px;
    }

        div#content #finish-photo-div .result-button .button {
            font-size: 13px;
            margin: 0 5px;
            padding: 6px 22px;
            min-width: 80px;
        }

/* Map mask overlay - ensures it covers the entire screen */
.photo-map-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Mobile-specific adjustments */
@media screen and (max-width: 767px) {
    div#content #finish-photo-div {
        width: 90%;
        max-width: 350px;
        padding: 10px;
    }

        div#content #finish-photo-div p.street-title {
            font-size: 18px;
            margin-top: 15px;
        }

        div#content #finish-photo-div .result-button .button {
            width: 40%;
            margin: 0 3px;
        }
}
