/* Validity Period Selection Styling */
.esim-validity-wrapper {
    display: flex;
    align-items: center;
	margin-right: 8px;
}

.esim-validity-wrapper label {
    margin-right: 10px;
    font-weight: 500;
}

select.esim-validity {
    height: 48px;
    padding: 0 10px;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    background-color: #fff;
    width: auto;
    min-width: 200px;
    box-shadow: none;
    outline: none;
}

/* Make it match the quantity input styling */
.quantity input,
select.esim-validity {
    height: 48px;
    line-height: 38px;
}

/* Improve responsive behavior */
@media (max-width: 768px) {
    .esim-validity-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .esim-validity-wrapper label {
        margin-bottom: 5px;
    }
    
    select.esim-validity {
        width: 100%;
    }
}