/* Hardstop Modal Styles */
.tripetto-hardstop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tripetto-hardstop-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.tripetto-hardstop-modal-content {
    position: relative;
    background-color: white;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000000;
}

.tripetto-hardstop-modal-body {
    padding: 40px 32px;
    text-align: center;
}

.tripetto-hardstop-message {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 32px;
}

.tripetto-hardstop-message p {
    margin: 0 0 1em 0;
}

.tripetto-hardstop-message p:last-child {
    margin-bottom: 0;
}

.tripetto-hardstop-message strong,
.tripetto-hardstop-message b {
    font-weight: 600;
}

.tripetto-hardstop-message em,
.tripetto-hardstop-message i {
    font-style: italic;
}

.tripetto-hardstop-button {
    background-color: white;
    color: #3D655D;
    border: 1px solid #3D655D;
    border-radius: 0;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
}

.tripetto-hardstop-button:hover {
    background-color: #3D655D;
    color: white;
}

.tripetto-hardstop-button:focus {
    outline: 2px solid #3D655D;
    outline-offset: 2px;
}

@media screen and (max-width: 600px) {
    .tripetto-hardstop-modal-body {
        padding: 32px 24px;
    }

    .tripetto-hardstop-message {
        font-size: 16px;
    }

    .tripetto-hardstop-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
