/* Cancel Button Styles */
.cancel-btn {
    width: auto;
    height: 45px;
    line-height: 45px;
    display: inline-block;
    font-family: 'Poppins-Bold';
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    background-color: #67666e;
    padding: 0px 40px;
    border-radius: 5px;
    border: 1px solid transparent;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.cancel-btn:hover {
    border: 1px solid #ff4343;
    color: #ffffff;
    background-color: #ff4343;
}

/* Ensure proper spacing between cancel and save buttons */
.next-step-btn-main {
    gap: 15px;
    align-items: center;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .next-step-btn-main {
        flex-direction: column;
        gap: 10px;
    }

    .cancel-btn,
    .next-step {
        width: 100%;
        margin-right: 0;
    }
}

/* Ensure buttons are properly aligned */
.next-step-btn-main {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Animation for button hover effects */
.cancel-btn,
.next-step {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
.cancel-btn:focus,
.next-step:focus {
    outline: 2px solid #001A78;
    outline-offset: 2px;
}

/* Override any conflicting styles from other CSS files */
.next-step-btn-main .cancel-btn {
    margin-right: 15px;
}

.next-step-btn-main .next-step {
    margin-right: 0;
}
