.cancellation-sh-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #ffffff;
    height: 100%;
    justify-content: center;
}

.cancellation-sh-image-container {
    margin-bottom: 24px;
}

.cancellation-sh-image {
    width: 158px; 
    height: auto;
    display: block;
}

.cancellation-sh-body {
    margin-bottom: 30px;
}

.cancellation-sh-primary-text {
    font-size: 16px;
    line-height: 1.4;
    color: #2d3748;
    margin-bottom: 16px;
    font-weight: 400;
}

.cancellation-sh-secondary-text {
    font-size: 16px;
    line-height: 1.4;
    color: #2d3748;
    margin-bottom: 0;
}

.cancellation-sh-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cancellation-sh-btn {
    width: fit-content;
    min-width: 200px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
    display: inline-block;
}

.cancellation-sh-btn-solid {
    background-color: var(--color-secondary); 
    color: #ffffff;
}

.cancellation-sh-btn-solid:hover{
    color: #ffffff;
}

.cancellation-sh-btn-outline {
    background-color: transparent;
    border-color: #2D3748;
    color: #1a202c;
}

.cancellation-sh-btn-outline:hover {
    color: #1a202c;
}